home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / os2 / e33el2.zip / emacs / 19.33 / lisp / texinfmt.el < prev    next >
Lisp/Scheme  |  1996-08-04  |  118KB  |  3,059 lines

  1. ;;; texinfmt.el --- format Texinfo files into Info files.
  2.  
  3. ;; Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993 Free Software
  4. ;; Foundation, Inc.
  5.  
  6. ;; Maintainer: Robert J. Chassell <bug-texinfo@prep.ai.mit.edu>
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to the
  22. ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23. ;; Boston, MA 02111-1307, USA.
  24.  
  25. ;;; Code:
  26.  
  27. ;;; Emacs lisp functions to convert Texinfo files to Info files.
  28.  
  29. (defvar texinfmt-version "2.32 of 19 November 1993")
  30.  
  31. ;;; Variable definitions
  32.  
  33. (require 'texinfo)          ; So `texinfo-footnote-style' is defined.
  34. (require 'texnfo-upd)       ; So `texinfo-section-types-regexp' is defined.
  35.  
  36. (defvar texinfo-format-syntax-table nil)
  37.  
  38. (defvar texinfo-vindex)
  39. (defvar texinfo-findex)
  40. (defvar texinfo-cindex)
  41. (defvar texinfo-pindex)
  42. (defvar texinfo-tindex)
  43. (defvar texinfo-kindex)
  44. (defvar texinfo-last-node)
  45. (defvar texinfo-node-names)
  46. (defvar texinfo-enclosure-list)
  47. (defvar texinfo-alias-list)
  48.  
  49. (defvar texinfo-command-start)
  50. (defvar texinfo-command-end)
  51. (defvar texinfo-command-name)
  52. (defvar texinfo-defun-type)
  53. (defvar texinfo-last-node-pos)
  54. (defvar texinfo-stack)
  55. (defvar texinfo-short-index-cmds-alist)
  56. (defvar texinfo-short-index-format-cmds-alist)
  57. (defvar texinfo-format-filename)
  58. (defvar texinfo-footnote-number)
  59. (defvar texinfo-start-of-header)
  60. (defvar texinfo-end-of-header)
  61. (defvar texinfo-raisesections-alist)
  62. (defvar texinfo-lowersections-alist)
  63.  
  64. ;;; Syntax table
  65.  
  66. (if texinfo-format-syntax-table
  67.     nil
  68.   (setq texinfo-format-syntax-table (make-syntax-table))
  69.   (modify-syntax-entry ?\" " " texinfo-format-syntax-table)
  70.   (modify-syntax-entry ?\\ " " texinfo-format-syntax-table)
  71.   (modify-syntax-entry ?@ "\\" texinfo-format-syntax-table)
  72.   (modify-syntax-entry ?\^q "\\" texinfo-format-syntax-table)
  73.   (modify-syntax-entry ?\[ "." texinfo-format-syntax-table)
  74.   (modify-syntax-entry ?\] "." texinfo-format-syntax-table)
  75.   (modify-syntax-entry ?\( "." texinfo-format-syntax-table)
  76.   (modify-syntax-entry ?\) "." texinfo-format-syntax-table)
  77.   (modify-syntax-entry ?{ "(}" texinfo-format-syntax-table)
  78.   (modify-syntax-entry ?} "){" texinfo-format-syntax-table)
  79.   (modify-syntax-entry ?\' "." texinfo-format-syntax-table))
  80.  
  81.  
  82. ;;; Top level buffer and region formatting functions
  83.  
  84. ;;;###autoload
  85. (defun texinfo-format-buffer (&optional notagify)
  86.   "Process the current buffer as texinfo code, into an Info file.
  87. The Info file output is generated in a buffer visiting the Info file
  88. names specified in the @setfilename command.
  89.  
  90. Non-nil argument (prefix, if interactive) means don't make tag table
  91. and don't split the file if large.  You can use Info-tagify and
  92. Info-split to do these manually."
  93.   (interactive "P")
  94.   (let ((lastmessage "Formatting Info file..."))
  95.     (message lastmessage)
  96.     (texinfo-format-buffer-1)
  97.     (if notagify
  98.         nil
  99.       (if (> (buffer-size) 30000)
  100.           (progn
  101.             (message (setq lastmessage "Making tags table for Info file..."))
  102.             (Info-tagify)))
  103.       (if (> (buffer-size) 100000)
  104.           (progn
  105.             (message (setq lastmessage "Splitting Info file..."))
  106.             (Info-split))))
  107.     (message (concat lastmessage
  108.                      (if (interactive-p) "done.  Now save it." "done.")))))
  109.  
  110. (defvar texinfo-region-buffer-name "*Info Region*"
  111.   "*Name of the temporary buffer used by \\[texinfo-format-region].")
  112.  
  113. ;;;###autoload
  114. (defun texinfo-format-region (region-beginning region-end)
  115.   "Convert the current region of the Texinfo file to Info format.
  116. This lets you see what that part of the file will look like in Info.
  117. The command is bound to \\[texinfo-format-region].  The text that is
  118. converted to Info is stored in a temporary buffer."
  119.   (interactive "r")
  120.   (message "Converting region to Info format...")
  121.   (let (texinfo-command-start
  122.         texinfo-command-end
  123.         texinfo-command-name
  124.         texinfo-vindex
  125.         texinfo-findex
  126.         texinfo-cindex
  127.         texinfo-pindex
  128.         texinfo-tindex
  129.         texinfo-kindex
  130.         texinfo-stack
  131.         (texinfo-format-filename "")
  132.         texinfo-example-start
  133.         texinfo-last-node-pos
  134.         texinfo-last-node
  135.         texinfo-node-names
  136.         (texinfo-footnote-number 0)
  137.         last-input-buffer
  138.         (fill-column-for-info fill-column)
  139.         (input-buffer (current-buffer))
  140.         (input-directory default-directory)
  141.         (header-text "")
  142.         (header-beginning 1)
  143.         (header-end 1))
  144.     
  145. ;;; Copy lines between beginning and end of header lines, 
  146. ;;;    if any, or else copy the `@setfilename' line, if any.
  147.     (save-excursion
  148.         (save-restriction
  149.           (widen)
  150.           (goto-char (point-min))
  151.           (let ((search-end (save-excursion (forward-line 100) (point))))
  152.             (if (or
  153.                  ;; Either copy header text.
  154.                  (and 
  155.                   (prog1 
  156.                       (search-forward tex-start-of-header search-end t)
  157.                     (forward-line 1)
  158.                     ;; Mark beginning of header.
  159.                     (setq header-beginning (point)))
  160.                   (prog1 
  161.                       (search-forward tex-end-of-header nil t)
  162.                     (beginning-of-line)
  163.                     ;; Mark end of header
  164.                     (setq header-end (point))))
  165.                  ;; Or copy @filename line.
  166.                  (prog2
  167.                   (goto-char (point-min))
  168.                   (search-forward "@setfilename" search-end t)
  169.                   (beginning-of-line)
  170.                   (setq header-beginning (point))
  171.                   (forward-line 1)
  172.                   (setq header-end (point))))
  173.                 
  174.                 ;; Copy header  
  175.                 (setq header-text
  176.                       (buffer-substring
  177.                        (min header-beginning region-beginning)
  178.                        header-end))))))
  179.  
  180. ;;; Find a buffer to use.
  181.     (switch-to-buffer (get-buffer-create texinfo-region-buffer-name))
  182.     (erase-buffer)
  183.     ;; Insert the header into the buffer.
  184.     (insert header-text)
  185.     ;; Insert the region into the buffer.
  186.     (insert-buffer-substring
  187.      input-buffer
  188.      (max region-beginning header-end)
  189.      region-end)
  190.     ;; Make sure region ends in a newline.
  191.     (or (= (preceding-char) ?\n)
  192.         (insert "\n"))
  193.     
  194.     (goto-char (point-min))
  195.     (texinfo-mode)
  196.     (message "Converting region to Info format...")
  197.     (setq fill-column fill-column-for-info)
  198.     ;; Install a syntax table useful for scanning command operands.
  199.     (set-syntax-table texinfo-format-syntax-table)
  200.  
  201.     ;; Insert @include files so `texinfo-raise-lower-sections' can
  202.     ;; work on them without losing track of multiple
  203.     ;; @raise/@lowersections commands. 
  204.     (while (re-search-forward "^@include" nil t)
  205.       (setq texinfo-command-end (point))
  206.       (let ((filename (concat input-directory
  207.                               (texinfo-parse-line-arg))))
  208.         (re-search-backward "^@include")
  209.         (delete-region (point) (save-excursion (forward-line 1) (point)))
  210.         (message "Reading included file: %s" filename)
  211.         (save-excursion
  212.           (save-restriction
  213.             (narrow-to-region
  214.              (point)
  215.              (+ (point) (car (cdr (insert-file-contents filename)))))
  216.             (goto-char (point-min))
  217.             ;; Remove `@setfilename' line from included file, if any,
  218.             ;; so @setfilename command not duplicated.
  219.             (if (re-search-forward 
  220.                  "^@setfilename" (save-excursion (forward-line 100) (point)) t)
  221.                 (progn
  222.                   (beginning-of-line)
  223.                   (delete-region
  224.                    (point) (save-excursion (forward-line 1) (point)))))))))
  225.  
  226.     ;; Raise or lower level of each section, if necessary.
  227.     (goto-char (point-min))
  228.     (texinfo-raise-lower-sections)
  229.     ;; Append @refill to appropriate paragraphs for filling.
  230.     (goto-char (point-min))
  231.     (texinfo-append-refill)
  232.     ;; If the region includes the effective end of the data,
  233.     ;; discard everything after that.
  234.     (goto-char (point-max))
  235.     (if (re-search-backward "^@bye" nil t)
  236.         (delete-region (point) (point-max)))
  237.     ;; Make sure buffer ends in a newline.
  238.     (or (= (preceding-char) ?\n)
  239.         (insert "\n"))
  240.     ;; Don't use a previous value of texinfo-enclosure-list.
  241.     (setq texinfo-enclosure-list nil)
  242.     (setq texinfo-alias-list nil)
  243.  
  244.     (goto-char (point-min))
  245.     (if (looking-at "\\\\input[ \t]+texinfo")
  246.         (delete-region (point) (save-excursion (forward-line 1) (point))))
  247.  
  248.     ;; Insert Info region title text.
  249.     (goto-char (point-min))
  250.     (if (search-forward 
  251.          "@setfilename" (save-excursion (forward-line 100) (point)) t)
  252.         (progn
  253.           (setq texinfo-command-end (point))
  254.           (beginning-of-line)
  255.           (setq texinfo-command-start (point))
  256.           (let ((arg (texinfo-parse-arg-discard)))
  257.             (insert " "
  258.               texinfo-region-buffer-name
  259.               " buffer for:  `") 
  260.             (insert (file-name-nondirectory (expand-file-name arg)))
  261.             (insert "',        -*-Text-*-\n")))
  262.       ;; Else no `@setfilename' line
  263.       (insert " "
  264.               texinfo-region-buffer-name
  265.               " buffer                       -*-Text-*-\n"))
  266.     (insert "produced by `texinfo-format-region'\n"
  267.             "from a region in: "
  268.             (if (buffer-file-name input-buffer)
  269.                   (concat "`"
  270.                           (file-name-sans-versions
  271.                            (file-name-nondirectory
  272.                             (buffer-file-name input-buffer)))
  273.                           "'")
  274.                 (concat "buffer `" (buffer-name input-buffer) "'"))
  275.               "\nusing `texinfmt.el' version "
  276.               texinfmt-version
  277.               ".\n\n")
  278.  
  279.     ;; Now convert for real.
  280.     (goto-char (point-min))
  281.     (texinfo-format-scan)
  282.     (goto-char (point-min))
  283.     
  284.     (message "Done.")))
  285.  
  286.  
  287. ;;; Primary internal formatting function for the whole buffer.
  288.  
  289. (defun texinfo-format-buffer-1 ()
  290.   (let (texinfo-format-filename
  291.         texinfo-example-start
  292.         texinfo-command-start
  293.         texinfo-command-end
  294.         texinfo-command-name
  295.         texinfo-last-node
  296.         texinfo-last-node-pos
  297.         texinfo-vindex
  298.         texinfo-findex
  299.         texinfo-cindex
  300.         texinfo-pindex
  301.         texinfo-tindex
  302.         texinfo-kindex
  303.         texinfo-stack
  304.         texinfo-node-names
  305.         (texinfo-footnote-number 0)
  306.         last-input-buffer
  307.         outfile
  308.         (fill-column-for-info fill-column)
  309.         (input-buffer (current-buffer))
  310.         (input-directory default-directory))
  311.     (setq texinfo-enclosure-list nil)
  312.     (setq texinfo-alias-list nil)
  313.     (save-excursion
  314.       (goto-char (point-min))
  315.       (or (search-forward "@setfilename" nil t)
  316.           (error "Texinfo file needs an `@setfilename FILENAME' line."))
  317.       (setq texinfo-command-end (point))
  318.       (setq outfile (texinfo-parse-line-arg)))
  319.     (find-file outfile)
  320.     (texinfo-mode)
  321.     (setq fill-column fill-column-for-info)
  322.     (set-syntax-table texinfo-format-syntax-table)
  323.     (erase-buffer)
  324.     (insert-buffer-substring input-buffer)
  325.     (message "Converting %s to Info format..." (buffer-name input-buffer))
  326.     
  327.     ;; Insert @include files so `texinfo-raise-lower-sections' can
  328.     ;; work on them without losing track of multiple
  329.     ;; @raise/@lowersections commands. 
  330.     (goto-char (point-min))
  331.     (while (re-search-forward "^@include" nil t)
  332.       (setq texinfo-command-end (point))
  333.       (let ((filename (concat input-directory
  334.                               (texinfo-parse-line-arg))))
  335.         (re-search-backward "^@include")
  336.         (delete-region (point) (save-excursion (forward-line 1) (point)))
  337.         (message "Reading included file: %s" filename)
  338.         (save-excursion
  339.           (save-restriction
  340.             (narrow-to-region
  341.              (point)
  342.              (+ (point) (car (cdr (insert-file-contents filename)))))
  343.             (goto-char (point-min))
  344.             ;; Remove `@setfilename' line from included file, if any,
  345.             ;; so @setfilename command not duplicated.
  346.             (if (re-search-forward 
  347.                  "^@setfilename"
  348.                  (save-excursion (forward-line 100) (point)) t)
  349.                 (progn
  350.                   (beginning-of-line)
  351.                   (delete-region
  352.                    (point) (save-excursion (forward-line 1) (point)))))))))
  353.     ;; Raise or lower level of each section, if necessary.
  354.     (goto-char (point-min))
  355.     (texinfo-raise-lower-sections)
  356.     ;; Append @refill to appropriate paragraphs
  357.     (goto-char (point-min))
  358.     (texinfo-append-refill)
  359.     (goto-char (point-min))
  360.     (search-forward "@setfilename")
  361.     (beginning-of-line)
  362.     (delete-region (point-min) (point))
  363.     ;; Remove @bye at end of file, if it is there.
  364.     (goto-char (point-max))
  365.     (if (search-backward "@bye" nil t)
  366.         (delete-region (point) (point-max)))
  367.     ;; Make sure buffer ends in a newline.
  368.     (or (= (preceding-char) ?\n)
  369.         (insert "\n"))
  370.     ;; Scan the whole buffer, converting to Info format.
  371.     (texinfo-format-scan)
  372.     ;; Return data for indices.
  373.     (goto-char (point-min))
  374.     (list outfile
  375.           texinfo-vindex texinfo-findex texinfo-cindex
  376.           texinfo-pindex texinfo-tindex texinfo-kindex)))
  377.  
  378.  
  379. ;;; Perform non-@-command file conversions: quotes and hyphens
  380.  
  381. (defun texinfo-format-convert (min max)
  382.   ;; Convert left and right quotes to typewriter font quotes.
  383.   (goto-char min)
  384.   (while (search-forward "``" max t)
  385.     (replace-match "\""))
  386.   (goto-char min)
  387.   (while (search-forward "''" max t)
  388.     (replace-match "\""))
  389.   ;; Convert three hyphens in a row to two.
  390.   (goto-char min)
  391.   (while (re-search-forward "\\( \\|\\w\\)\\(---\\)\\( \\|\\w\\)" max t)
  392.     (delete-region (1+ (match-beginning 2)) (+ 2 (match-beginning
  393.     2)))))
  394.  
  395.  
  396. ;;; Handle paragraph filling
  397.  
  398. (defvar texinfo-no-refill-regexp
  399.   "^@\\(example\\|smallexample\\|lisp\\|smalllisp\\|display\\|format\\|flushleft\\|flushright\\|menu\\|titlepage\\|iftex\\|ifhtml\\|tex\\|html\\)"
  400.   "Regexp specifying environments in which paragraphs are not filled.")
  401.  
  402. (defvar texinfo-part-of-para-regexp
  403.   "^@\\(b{\\|bullet{\\|cite{\\|code{\\|emph{\\|equiv{\\|error{\\|expansion{\\|file{\\|i{\\|inforef{\\|kbd{\\|key{\\|lisp{\\|minus{\\|point{\\|print{\\|pxref{\\|r{\\|ref{\\|result{\\|samp{\\|sc{\\|t{\\|TeX{\\|today{\\|var{\\|w{\\|xref{\\)"
  404.   "Regexp specifying @-commands found within paragraphs.")
  405.  
  406. (defun texinfo-append-refill ()
  407.   "Append @refill at end of each paragraph that should be filled.
  408. Do not append @refill to paragraphs within @example and similar environments.  
  409. Do not append @refill to paragraphs containing @w{TEXT} or @*."
  410.  
  411.   ;; It is necessary to append @refill before other processing because
  412.   ;; the other processing removes information that tells Texinfo
  413.   ;; whether the text should or should not be filled.
  414.   
  415.   (while (< (point) (point-max))
  416.     (let ((refill-blank-lines "^[ \t\n]*$")
  417.           (case-fold-search nil))       ; Don't confuse @TeX and @tex....
  418.       (beginning-of-line)
  419.       ;; 1. Skip over blank lines;
  420.       ;;    skip over lines beginning with @-commands, 
  421.       ;;    but do not skip over lines
  422.       ;;      that are no-refill environments such as @example or
  423.       ;;      that begin with within-paragraph @-commands such as @code.
  424.       (while (and (looking-at (concat "^@\\|^\\\\\\|" refill-blank-lines))
  425.                   (not (looking-at 
  426.                         (concat
  427.                          "\\(" 
  428.                          texinfo-no-refill-regexp
  429.                          "\\|" 
  430.                          texinfo-part-of-para-regexp
  431.                          "\\)")))
  432.                   (< (point) (point-max)))
  433.         (forward-line 1))
  434.       ;; 2. Skip over @example and similar no-refill environments.
  435.       (if (looking-at texinfo-no-refill-regexp)
  436.           (let ((environment
  437.                  (buffer-substring (match-beginning 1) (match-end 1))))
  438.             (progn (re-search-forward (concat "^@end " environment) nil t)
  439.                    (forward-line 1)))
  440.         ;; 3. Do not refill a paragraph containing @w or @*
  441.         (if  (or
  442.               (>= (point) (point-max))
  443.               (re-search-forward
  444.                "@w{\\|@\\*" (save-excursion (forward-paragraph) (point)) t))
  445.             ;; Go to end of paragraph and do nothing.
  446.             (forward-paragraph) 
  447.           ;; 4. Else go to end of paragraph and insert @refill
  448.           (forward-paragraph)
  449.           (forward-line -1)
  450.           (end-of-line)
  451.           (delete-region
  452.            (point)
  453.            (save-excursion (skip-chars-backward " \t") (point)))
  454.           ;; `looking-at-backward' not available in v. 18.57
  455.           ;; (if (not (looking-at-backward "@refill\\|@bye")) ;)
  456.           (if (not (re-search-backward
  457.                     "@refill\\|@bye"
  458.                     (save-excursion (beginning-of-line) (point))
  459.                     t))
  460.               (insert "@refill"))
  461.           (forward-line 1))))))
  462.  
  463.  
  464. ;;; Handle `@raisesections' and `@lowersections' commands
  465.  
  466. ;; These commands change the hierarchical level of chapter structuring
  467. ;; commands. 
  468. ;;    
  469. ;; @raisesections changes @subsection to @section,
  470. ;;                        @section    to @chapter,
  471. ;;                        etc.
  472. ;;
  473. ;; @lowersections changes @chapter    to @section
  474. ;;                        @subsection to @subsubsection,
  475. ;;                        etc.
  476. ;;
  477. ;; An @raisesections/@lowersections command changes only those
  478. ;; structuring commands that follow the @raisesections/@lowersections
  479. ;; command.
  480. ;;
  481. ;; Repeated @raisesections/@lowersections continue to raise or lower
  482. ;; the heading level.
  483. ;; 
  484. ;; An @lowersections command cancels an @raisesections command, and
  485. ;; vice versa.
  486. ;;
  487. ;; You cannot raise or lower "beyond" chapters or subsubsections, but
  488. ;; trying to do so does not elicit an error---you just get more
  489. ;; headings that mean the same thing as you keep raising or lowering
  490. ;; (for example, after a single @raisesections, both @chapter and
  491. ;; @section produce chapter headings).
  492.  
  493. (defun texinfo-raise-lower-sections ()
  494.   "Raise or lower the hierarchical level of chapters, sections, etc. 
  495.  
  496. This function acts according to `@raisesections' and `@lowersections'
  497. commands in the Texinfo file.
  498.  
  499. For example, an `@lowersections' command is useful if you wish to
  500. include what is written as an outer or standalone Texinfo file in
  501. another Texinfo file as an inner, included file.  The `@lowersections'
  502. command changes chapters to sections, sections to subsections and so
  503. on.
  504.  
  505. @raisesections changes @subsection to @section,
  506.                        @section    to @chapter,
  507.                        @heading    to @chapheading,
  508.                        etc.
  509.  
  510. @lowersections changes @chapter    to @section,
  511.                        @subsection to @subsubsection,
  512.                        @heading    to @subheading,
  513.                        etc.
  514.  
  515. An `@raisesections' or `@lowersections' command changes only those
  516. structuring commands that follow the `@raisesections' or
  517. `@lowersections' command.
  518.  
  519. An `@lowersections' command cancels an `@raisesections' command, and
  520. vice versa.
  521.  
  522. Repeated use of the commands continue to raise or lower the hierarchical
  523. level a step at a time.
  524.  
  525. An attempt to raise above `chapters' reproduces chapter commands; an
  526. attempt to lower below subsubsections reproduces subsubsection
  527. commands."
  528.   
  529.   ;; `texinfo-section-types-regexp' is defined in `texnfo-upd.el';
  530.   ;; it is a regexp matching chapter, section, other headings
  531.   ;; (but not the top node).
  532.  
  533.   (let (type (level 0))
  534.     (while 
  535.         (re-search-forward
  536.          (concat
  537.           "\\(\\(^@\\(raise\\|lower\\)sections\\)\\|\\("
  538.           texinfo-section-types-regexp
  539.           "\\)\\)")
  540.          nil t)
  541.       (beginning-of-line)
  542.       (save-excursion (setq type (read (current-buffer))))
  543.       (cond 
  544.        
  545.        ;; 1. Increment level
  546.        ((eq type '@raisesections)
  547.         (setq level (1+ level))
  548.         (delete-region
  549.          (point) (save-excursion (forward-line 1) (point))))
  550.        
  551.        ;; 2. Decrement level
  552.        ((eq type '@lowersections)
  553.         (setq level (1- level))
  554.         (delete-region
  555.          (point) (save-excursion (forward-line 1) (point))))
  556.        
  557.        ;; Now handle structuring commands
  558.        ((cond
  559.          
  560.          ;; 3. Raise level when positive
  561.          ((> level 0)
  562.           (let ((count level)
  563.                 (new-level type))
  564.             (while (> count 0)
  565.               (setq new-level
  566.                     (cdr (assq new-level texinfo-raisesections-alist)))
  567.               (setq count (1- count)))
  568.             (kill-word 1)
  569.             (insert (symbol-name new-level))))
  570.          
  571.          ;; 4. Do nothing except move point when level is zero
  572.          ((= level 0) (forward-line 1))
  573.          
  574.          ;; 5. Lower level when positive
  575.          ((< level 0)
  576.           (let ((count level)
  577.                 (new-level type))
  578.             (while (< count 0)
  579.               (setq new-level
  580.                     (cdr (assq new-level texinfo-lowersections-alist)))
  581.               (setq count (1+ count)))
  582.             (kill-word 1)
  583.             (insert (symbol-name new-level))))))))))
  584.  
  585. (defvar texinfo-raisesections-alist
  586.   '((@chapter . @chapter)             ; Cannot go higher
  587.     (@unnumbered . @unnumbered)
  588.  
  589.     (@majorheading . @majorheading)
  590.     (@chapheading . @chapheading)
  591.     (@appendix . @appendix)
  592.     
  593.     (@section . @chapter)
  594.     (@unnumberedsec . @unnumbered)
  595.     (@heading . @chapheading)
  596.     (@appendixsec . @appendix)
  597.     
  598.     (@subsection . @section)
  599.     (@unnumberedsubsec . @unnumberedsec)
  600.     (@subheading . @heading)
  601.     (@appendixsubsec . @appendixsec)
  602.     
  603.     (@subsubsection . @subsection)
  604.     (@unnumberedsubsubsec . @unnumberedsubsec)
  605.     (@subsubheading . @subheading)
  606.     (@appendixsubsubsec . @appendixsubsec))
  607.   "*An alist of next higher levels for chapters, sections. etc.
  608. For example, section to chapter, subsection to section.
  609. Used by `texinfo-raise-lower-sections'.
  610. The keys specify types of section; the values correspond to the next
  611. higher types.")
  612.  
  613. (defvar texinfo-lowersections-alist
  614.   '((@chapter . @section)  
  615.     (@unnumbered . @unnumberedsec)
  616.     (@majorheading . @heading)
  617.     (@chapheading . @heading)
  618.     (@appendix . @appendixsec)
  619.     
  620.     (@section . @subsection)
  621.     (@unnumberedsec . @unnumberedsubsec)
  622.     (@heading . @subheading)
  623.     (@appendixsec . @appendixsubsec)
  624.     
  625.     (@subsection . @subsubsection)
  626.     (@unnumberedsubsec . @unnumberedsubsubsec)
  627.     (@subheading . @subsubheading)
  628.     (@appendixsubsec . @appendixsubsubsec)
  629.     
  630.     (@subsubsection . @subsubsection) ; Cannot go lower.
  631.     (@unnumberedsubsubsec . @unnumberedsubsubsec)
  632.     (@subsubheading . @subsubheading)
  633.     (@appendixsubsubsec . @appendixsubsubsec))
  634.   "*An alist of next lower levels for chapters, sections. etc.
  635. For example, chapter to section, section to subsection.
  636. Used by `texinfo-raise-lower-sections'.
  637. The keys specify types of section; the values correspond to the next
  638. lower types.")
  639.  
  640.  
  641. ;;; Perform those texinfo-to-info conversions that apply to the whole input
  642. ;;; uniformly.
  643.  
  644. (defun texinfo-format-scan ()
  645.   (texinfo-format-convert (point-min) (point-max))
  646.   ;; Scan for @-commands.
  647.   (goto-char (point-min))
  648.   (while (search-forward "@" nil t)
  649.     (if (looking-at "[@{}^'` *\"?!]")
  650.         ;; Handle a few special @-followed-by-one-char commands.
  651.         (if (= (following-char) ?*)
  652.             (progn
  653.               ;; remove command
  654.               (delete-region (1- (point)) (1+ (point)))
  655.               ;; insert return if not at end of line;
  656.               ;; else line is already broken.
  657.               (if (not (= (following-char) ?\n))
  658.                   (insert ?\n)))      
  659.           ;; The other characters are simply quoted.  Delete the @.
  660.           (delete-char -1)
  661.           (forward-char 1))
  662.       ;; @ is followed by a command-word; find the end of the word.
  663.       (setq texinfo-command-start (1- (point)))
  664.       (if (= (char-syntax (following-char)) ?w)
  665.           (forward-word 1)
  666.         (forward-char 1))
  667.       (setq texinfo-command-end (point))
  668.       ;; Handle let aliasing
  669.       (setq texinfo-command-name
  670.         (let (trial
  671.           (cmdname 
  672.            (buffer-substring
  673.             (1+ texinfo-command-start) texinfo-command-end)))
  674.           (while (setq trial (assoc cmdname texinfo-alias-list))
  675.         (setq cmdname (cdr trial)))
  676.             (intern cmdname)))
  677.       ;; Call the handler for this command.
  678.       (let ((enclosure-type
  679.              (assoc
  680.               (symbol-name texinfo-command-name)
  681.               texinfo-enclosure-list)))
  682.         (if enclosure-type
  683.             (progn
  684.               (insert
  685.                (car (car (cdr enclosure-type))) 
  686.                (texinfo-parse-arg-discard)
  687.                (car (cdr (car (cdr enclosure-type)))))
  688.               (goto-char texinfo-command-start))
  689.           (let ((cmd (get texinfo-command-name 'texinfo-format)))
  690.             (if cmd (funcall cmd) (texinfo-unsupported)))))))
  691.   
  692.   (cond (texinfo-stack
  693.          (goto-char (nth 2 (car texinfo-stack)))
  694.          (error "Unterminated @%s" (car (car texinfo-stack))))))
  695.  
  696. (put 'begin 'texinfo-format 'texinfo-format-begin)
  697. (defun texinfo-format-begin ()
  698.   (texinfo-format-begin-end 'texinfo-format))
  699.  
  700. (put 'end 'texinfo-format 'texinfo-format-end)
  701. (defun texinfo-format-end ()
  702.   (texinfo-format-begin-end 'texinfo-end))
  703.  
  704. (defun texinfo-format-begin-end (prop)
  705.   (setq texinfo-command-name (intern (texinfo-parse-line-arg)))
  706.   (let ((cmd (get texinfo-command-name prop)))
  707.     (if cmd (funcall cmd)
  708.       (texinfo-unsupported))))
  709.  
  710. ;;; Parsing functions
  711.  
  712. (defun texinfo-parse-line-arg ()
  713.   (goto-char texinfo-command-end)
  714.   (let ((start (point)))
  715.     (cond ((looking-at " ")
  716.            (skip-chars-forward " ")
  717.            (setq start (point))
  718.            (end-of-line)
  719.            (skip-chars-backward " ")
  720.            (delete-region (point) (progn (end-of-line) (point)))
  721.            (setq texinfo-command-end (1+ (point))))
  722.           ((looking-at "{")
  723.            (setq start (1+ (point)))
  724.            (forward-list 1)
  725.            (setq texinfo-command-end (point))
  726.            (forward-char -1))
  727.           (t
  728.            (error "Invalid texinfo command arg format")))
  729.     (prog1 (buffer-substring start (point))
  730.            (if (eolp) (forward-char 1)))))
  731.  
  732. (defun texinfo-parse-expanded-arg ()
  733.   (goto-char texinfo-command-end)
  734.   (let ((start (point))
  735.         marker)
  736.     (cond ((looking-at " ")
  737.            (skip-chars-forward " ")
  738.            (setq start (point))
  739.            (end-of-line)
  740.            (setq texinfo-command-end (1+ (point))))
  741.           ((looking-at "{")
  742.            (setq start (1+ (point)))
  743.            (forward-list 1)
  744.            (setq texinfo-command-end (point))
  745.            (forward-char -1))
  746.           (t
  747.            (error "Invalid texinfo command arg format")))
  748.     (setq marker (move-marker (make-marker) texinfo-command-end))
  749.     (texinfo-format-expand-region start (point))
  750.     (setq texinfo-command-end (marker-position marker))
  751.     (move-marker marker nil)
  752.     (prog1 (buffer-substring start (point))
  753.            (if (eolp) (forward-char 1)))))
  754.  
  755. (defun texinfo-format-expand-region (start end)
  756.   (save-restriction
  757.     (narrow-to-region start end)
  758.     (let (texinfo-command-start
  759.           texinfo-command-end
  760.           texinfo-command-name
  761.           texinfo-stack)
  762.       (texinfo-format-scan))
  763.     (goto-char (point-max))))
  764.  
  765. (defun texinfo-parse-arg-discard ()
  766.   (prog1 (texinfo-parse-line-arg)
  767.          (texinfo-discard-command)))
  768.  
  769. (defun texinfo-discard-command ()
  770.   (delete-region texinfo-command-start texinfo-command-end))
  771.  
  772. (defun texinfo-optional-braces-discard ()
  773.   "Discard braces following command, if any."
  774.   (goto-char texinfo-command-end)
  775.   (let ((start (point)))
  776.     (cond ((looking-at "[ \t]*\n"))     ; do nothing
  777.           ((looking-at "{")             ; remove braces, if any
  778.            (forward-list 1)
  779.            (setq texinfo-command-end (point)))
  780.           (t
  781.            (error
  782.             "Invalid `texinfo-optional-braces-discard' format \(need braces?\)")))
  783.     (delete-region texinfo-command-start texinfo-command-end)))
  784.  
  785. (defun texinfo-format-parse-line-args ()
  786.   (let ((start (1- (point)))
  787.         next beg end
  788.         args)
  789.     (skip-chars-forward " ")
  790.     (while (not (eolp))
  791.       (setq beg (point))
  792.       (re-search-forward "[\n,]")
  793.       (setq next (point))
  794.       (if (bolp) (setq next (1- next)))
  795.       (forward-char -1)
  796.       (skip-chars-backward " ")
  797.       (setq end (point))
  798.       (setq args (cons (if (> end beg) (buffer-substring beg end))
  799.                        args))
  800.       (goto-char next)
  801.       (skip-chars-forward " "))
  802.     (if (eolp) (forward-char 1))
  803.     (setq texinfo-command-end (point))
  804.     (nreverse args)))
  805.  
  806. (defun texinfo-format-parse-args ()
  807.   (let ((start (1- (point)))
  808.         next beg end
  809.         args)
  810.     (search-forward "{")
  811.     (save-excursion
  812.       (texinfo-format-expand-region 
  813.        (point)
  814.        (save-excursion (up-list 1) (1- (point)))))
  815.     ;; The following does not handle cross references of the form:
  816.     ;; `@xref{bullet, , @code{@@bullet}@{@}}.' because the
  817.     ;; re-search-forward finds the first right brace after the second
  818.     ;; comma. 
  819.     (while (/= (preceding-char) ?\})
  820.       (skip-chars-forward " \t\n")
  821.       (setq beg (point))
  822.       (re-search-forward "[},]")
  823.       (setq next (point))
  824.       (forward-char -1)
  825.       (skip-chars-backward " \t\n")
  826.       (setq end (point))
  827.       (cond ((< beg end)
  828.              (goto-char beg)
  829.              (while (search-forward "\n" end t)
  830.                (replace-match " "))))
  831.       (setq args (cons (if (> end beg) (buffer-substring beg end))
  832.                        args))
  833.       (goto-char next))
  834.     (if (eolp) (forward-char 1))
  835.     (setq texinfo-command-end (point))
  836.     (nreverse args)))
  837.  
  838. (defun texinfo-format-parse-defun-args ()
  839.   (goto-char texinfo-command-end)
  840.   (let ((start (point)))
  841.     (end-of-line)
  842.     (setq texinfo-command-end (1+ (point)))
  843.     (let ((marker (move-marker (make-marker) texinfo-command-end)))
  844.       (texinfo-format-expand-region start (point))
  845.       (setq texinfo-command-end (marker-position marker))
  846.       (move-marker marker nil))
  847.     (goto-char start)
  848.     (let ((args '())
  849.           beg end)
  850.       (skip-chars-forward " ")
  851.       (while (not (eolp))
  852.         (cond ((looking-at "{")
  853.                (setq beg (1+ (point)))
  854.                (forward-list 1)
  855.                (setq end (1- (point))))
  856.               (t
  857.                (setq beg (point))
  858.                (re-search-forward "[\n ]")
  859.                (forward-char -1)
  860.                (setq end (point))))
  861.         (setq args (cons (buffer-substring beg end) args))
  862.         (skip-chars-forward " "))
  863.       (forward-char 1)
  864.       (nreverse args))))
  865.  
  866. (defun texinfo-discard-line ()
  867.   (goto-char texinfo-command-end)
  868.   (skip-chars-forward " \t")
  869.   (or (eolp)
  870.       (error "Extraneous text at end of command line."))
  871.   (goto-char texinfo-command-start)
  872.   (or (bolp)
  873.       (error "Extraneous text at beginning of command line."))
  874.   (delete-region (point) (progn (forward-line 1) (point))))
  875.  
  876. (defun texinfo-discard-line-with-args ()
  877.   (goto-char texinfo-command-start)
  878.   (delete-region (point) (progn (forward-line 1) (point))))
  879.  
  880.  
  881. ;;; @setfilename
  882.  
  883. ;; Only `texinfo-format-buffer' handles @setfilename with this
  884. ;; definition; `texinfo-format-region' handles @setfilename, if any,
  885. ;; specially. 
  886. (put 'setfilename 'texinfo-format 'texinfo-format-setfilename)
  887. (defun texinfo-format-setfilename ()
  888.   (let ((arg (texinfo-parse-arg-discard)))
  889.     (message "Formatting Info file: %s" arg)
  890.     (setq texinfo-format-filename
  891.           (file-name-nondirectory (expand-file-name arg)))
  892.     (insert "Info file: "
  893.             texinfo-format-filename ",    -*-Text-*-\n"
  894.             "produced by `texinfo-format-buffer'\n"
  895.             "from file"
  896.             (if (buffer-file-name input-buffer)
  897.                 (concat " `"
  898.                         (file-name-sans-versions
  899.                          (file-name-nondirectory
  900.                           (buffer-file-name input-buffer)))
  901.                         "'")
  902.               (concat "buffer `" (buffer-name input-buffer) "'"))
  903.             "\nusing `texinfmt.el' version "
  904.             texinfmt-version
  905.             ".\n\n")))
  906.  
  907. ;;; @node, @menu
  908.  
  909. (put 'node 'texinfo-format 'texinfo-format-node)
  910. (put 'nwnode 'texinfo-format 'texinfo-format-node)
  911. (defun texinfo-format-node ()
  912.   (let* ((args (texinfo-format-parse-line-args))
  913.          (name (nth 0 args))
  914.          (next (nth 1 args))
  915.          (prev (nth 2 args))
  916.          (up (nth 3 args)))
  917.     (texinfo-discard-command)
  918.     (setq texinfo-last-node name)
  919.     (let ((tem (downcase name)))
  920.       (if (assoc tem texinfo-node-names)
  921.           (error "Duplicate node name: %s" name)
  922.         (setq texinfo-node-names (cons (list tem) texinfo-node-names))))
  923.     (setq texinfo-footnote-number 0)
  924.     ;; insert "\n\^_" unconditionally since this is what info is looking for
  925.     (insert "\n\^_\nFile: " texinfo-format-filename
  926.             ", Node: " name)
  927.     (if next
  928.         (insert ", Next: " next))
  929.     (if prev
  930.         (insert ", Prev: " prev))
  931.     (if up
  932.         (insert ", Up: " up))
  933.     (insert ?\n)
  934.     (setq texinfo-last-node-pos (point))))
  935.  
  936. (put 'menu 'texinfo-format 'texinfo-format-menu)
  937. (defun texinfo-format-menu ()
  938.   (texinfo-discard-line)
  939.   (insert "* Menu:\n\n"))
  940.  
  941. (put 'menu 'texinfo-end 'texinfo-discard-command)
  942.  
  943.  
  944. ;;; Cross references
  945.  
  946. ; @xref {NODE, FNAME, NAME, FILE, DOCUMENT}
  947. ; -> *Note FNAME: (FILE)NODE
  948. ;   If FILE is missing,
  949. ;    *Note FNAME: NODE
  950. ;   If FNAME is empty and NAME is present
  951. ;    *Note NAME: Node
  952. ;   If both NAME and FNAME are missing
  953. ;    *Note NODE::
  954. ;   texinfo ignores the DOCUMENT argument.
  955. ; -> See section <xref to NODE> [NAME, else NODE], page <xref to NODE>
  956. ;   If FILE is specified, (FILE)NODE is used for xrefs.
  957. ;   If fifth argument DOCUMENT is specified, produces
  958. ;    See section <xref to NODE> [NAME, else NODE], page <xref to NODE>
  959. ;    of DOCUMENT
  960.  
  961. ; @ref             a reference that does not put `See' or `see' in
  962. ;                  the hardcopy and is the same as @xref in Info
  963. (put 'ref 'texinfo-format 'texinfo-format-xref)
  964.  
  965. (put 'xref 'texinfo-format 'texinfo-format-xref)
  966. (defun texinfo-format-xref ()
  967.   (let ((args (texinfo-format-parse-args)))
  968.     (texinfo-discard-command)
  969.     (insert "*Note ")
  970.     (let ((fname (or (nth 1 args) (nth 2 args))))
  971.       (if (null (or fname (nth 3 args)))
  972.           (insert (car args) "::")
  973.         (insert (or fname (car args)) ": ")
  974.         (if (nth 3 args)
  975.             (insert "(" (nth 3 args) ")"))
  976.         (insert (car args))))))
  977.  
  978. (put 'pxref 'texinfo-format 'texinfo-format-pxref)
  979. (defun texinfo-format-pxref ()
  980.   (texinfo-format-xref)
  981.   (or (save-excursion
  982.         (forward-char -2)
  983.         (looking-at "::"))
  984.       (insert ".")))
  985.  
  986. ;@inforef{NODE, FNAME, FILE}
  987. ;Like @xref{NODE, FNAME,,FILE} in texinfo.
  988. ;In Tex, generates "See Info file FILE, node NODE"
  989. (put 'inforef 'texinfo-format 'texinfo-format-inforef)
  990. (defun texinfo-format-inforef ()
  991.   (let ((args (texinfo-format-parse-args)))
  992.     (texinfo-discard-command)
  993.     (if (nth 1 args)
  994.         (insert "*Note " (nth 1 args) ": (" (nth 2 args) ")" (car args))
  995.       (insert "*Note " "(" (nth 2 args) ")" (car args) "::"))))
  996.  
  997.  
  998. ;;; Section headings
  999.  
  1000. (put 'majorheading 'texinfo-format 'texinfo-format-chapter)
  1001. (put 'chapheading 'texinfo-format 'texinfo-format-chapter)
  1002. (put 'ichapter 'texinfo-format 'texinfo-format-chapter)
  1003. (put 'chapter 'texinfo-format 'texinfo-format-chapter)
  1004. (put 'iappendix 'texinfo-format 'texinfo-format-chapter)
  1005. (put 'appendix 'texinfo-format 'texinfo-format-chapter)
  1006. (put 'iunnumbered 'texinfo-format 'texinfo-format-chapter)
  1007. (put 'top 'texinfo-format 'texinfo-format-chapter)
  1008. (put 'unnumbered 'texinfo-format 'texinfo-format-chapter)
  1009. (defun texinfo-format-chapter ()
  1010.   (texinfo-format-chapter-1 ?*))
  1011.  
  1012. (put 'heading 'texinfo-format 'texinfo-format-section)
  1013. (put 'isection 'texinfo-format 'texinfo-format-section)
  1014. (put 'section 'texinfo-format 'texinfo-format-section)
  1015. (put 'iappendixsection 'texinfo-format 'texinfo-format-section)
  1016. (put 'appendixsection 'texinfo-format 'texinfo-format-section)
  1017. (put 'iappendixsec 'texinfo-format 'texinfo-format-section)
  1018. (put 'appendixsec 'texinfo-format 'texinfo-format-section)
  1019. (put 'iunnumberedsec 'texinfo-format 'texinfo-format-section)
  1020. (put 'unnumberedsec 'texinfo-format 'texinfo-format-section)
  1021. (defun texinfo-format-section ()
  1022.   (texinfo-format-chapter-1 ?=))
  1023.  
  1024. (put 'subheading 'texinfo-format 'texinfo-format-subsection)
  1025. (put 'isubsection 'texinfo-format 'texinfo-format-subsection)
  1026. (put 'subsection 'texinfo-format 'texinfo-format-subsection)
  1027. (put 'iappendixsubsec 'texinfo-format 'texinfo-format-subsection)
  1028. (put 'appendixsubsec 'texinfo-format 'texinfo-format-subsection)
  1029. (put 'iunnumberedsubsec 'texinfo-format 'texinfo-format-subsection)
  1030. (put 'unnumberedsubsec 'texinfo-format 'texinfo-format-subsection)
  1031. (defun texinfo-format-subsection ()
  1032.   (texinfo-format-chapter-1 ?-))
  1033.  
  1034. (put 'subsubheading 'texinfo-format 'texinfo-format-subsubsection)
  1035. (put 'isubsubsection 'texinfo-format 'texinfo-format-subsubsection)
  1036. (put 'subsubsection 'texinfo-format 'texinfo-format-subsubsection)
  1037. (put 'iappendixsubsubsec 'texinfo-format 'texinfo-format-subsubsection)
  1038. (put 'appendixsubsubsec 'texinfo-format 'texinfo-format-subsubsection)
  1039. (put 'iunnumberedsubsubsec 'texinfo-format 'texinfo-format-subsubsection)
  1040. (put 'unnumberedsubsubsec 'texinfo-format 'texinfo-format-subsubsection)
  1041. (defun texinfo-format-subsubsection ()
  1042.   (texinfo-format-chapter-1 ?.))
  1043.  
  1044. (defun texinfo-format-chapter-1 (belowchar)
  1045.   (let ((arg (texinfo-parse-arg-discard)))
  1046.     (message "Formatting: %s ... " arg)   ; So we can see where we are.
  1047.     (insert ?\n arg ?\n "@SectionPAD " belowchar ?\n)
  1048.     (forward-line -2)))
  1049.  
  1050. (put 'SectionPAD 'texinfo-format 'texinfo-format-sectionpad)
  1051. (defun texinfo-format-sectionpad ()
  1052.   (let ((str (texinfo-parse-arg-discard)))
  1053.     (forward-char -1)
  1054.     (let ((column (current-column)))
  1055.       (forward-char 1)
  1056.       (while (> column 0)
  1057.         (insert str)
  1058.         (setq column (1- column))))
  1059.     (insert ?\n)))
  1060.  
  1061.  
  1062. ;;; Space controlling commands:  @. and @:, and the soft hyphen.
  1063.  
  1064. (put '\. 'texinfo-format 'texinfo-format-\.)
  1065. (defun texinfo-format-\. ()
  1066.   (texinfo-discard-command)
  1067.   (insert "."))
  1068.  
  1069. (put '\: 'texinfo-format 'texinfo-format-\:)
  1070. (defun texinfo-format-\: ()
  1071.   (texinfo-discard-command))
  1072.  
  1073. (put '\- 'texinfo-format 'texinfo-format-soft-hyphen)
  1074. (defun texinfo-format-soft-hyphen ()
  1075.   (texinfo-discard-command))
  1076.  
  1077.  
  1078. ;;; @center, @sp, and @br
  1079.  
  1080. (put 'center 'texinfo-format 'texinfo-format-center)
  1081. (defun texinfo-format-center ()
  1082.   (let ((arg (texinfo-parse-expanded-arg)))
  1083.     (texinfo-discard-command)
  1084.     (insert arg)
  1085.     (insert ?\n)
  1086.     (save-restriction
  1087.       (goto-char (1- (point)))
  1088.       (let ((indent-tabs-mode nil))
  1089.         (center-line)))))
  1090.  
  1091. (put 'sp 'texinfo-format 'texinfo-format-sp)
  1092. (defun texinfo-format-sp ()
  1093.   (let* ((arg (texinfo-parse-arg-discard))
  1094.          (num (read arg)))
  1095.     (insert-char ?\n num)))
  1096.  
  1097. (put 'br 'texinfo-format 'texinfo-format-paragraph-break)
  1098. (defun texinfo-format-paragraph-break ()
  1099.   "Force a paragraph break.
  1100. If used within a line, follow `@br' with braces."
  1101.   (texinfo-optional-braces-discard)
  1102.   ;; insert one return if at end of line;
  1103.   ;; else insert two returns, to generate a blank line.
  1104.   (if (= (following-char) ?\n)
  1105.       (insert ?\n)
  1106.     (insert-char ?\n 2)))
  1107.  
  1108.  
  1109. ;;; @footnote  and  @footnotestyle
  1110.  
  1111. ; In Texinfo, footnotes are created with the `@footnote' command.
  1112. ; This command is followed immediately by a left brace, then by the text of
  1113. ; the footnote, and then by a terminating right brace.  The
  1114. ; template for a footnote is:
  1115. ;      @footnote{TEXT}
  1116. ;
  1117. ; Info has two footnote styles:
  1118. ;    * In the End of node style, all the footnotes for a single node
  1119. ;      are placed at the end of that node.  The footnotes are
  1120. ;      separated from the rest of the node by a line of dashes with
  1121. ;      the word `Footnotes' within it.
  1122. ;    * In the Separate node style, all the footnotes for a single node
  1123. ;      are placed in an automatically constructed node of their own.
  1124.  
  1125. ; Footnote style is specified by the @footnotestyle command, either
  1126. ;    @footnotestyle separate
  1127. ; or
  1128. ;    @footnotestyle end
  1129. ; The default is  separate
  1130.  
  1131. (defvar texinfo-footnote-style "separate" 
  1132.   "Footnote style, either separate or end.")
  1133.  
  1134. (put 'footnotestyle 'texinfo-format 'texinfo-footnotestyle)
  1135. (defun texinfo-footnotestyle ()
  1136.   "Specify whether footnotes are at end of node or in separate nodes.
  1137. Argument is either end or separate."
  1138.   (setq texinfo-footnote-style (texinfo-parse-arg-discard)))
  1139.  
  1140. (defvar texinfo-footnote-number)
  1141.  
  1142. (put 'footnote 'texinfo-format 'texinfo-format-footnote)
  1143. (defun texinfo-format-footnote ()
  1144.   "Format a footnote in either end of node or separate node style.
  1145. The   texinfo-footnote-style  variable controls which style is used."
  1146.   (setq texinfo-footnote-number (1+ texinfo-footnote-number))
  1147.   (cond ((string= texinfo-footnote-style "end")
  1148.          (texinfo-format-end-node))
  1149.         ((string= texinfo-footnote-style "separate")
  1150.          (texinfo-format-separate-node))))
  1151.  
  1152. (defun texinfo-format-separate-node ()
  1153.   "Format footnote in Separate node style, with notes in own node.
  1154. The node is constructed automatically."
  1155.   (let* (start
  1156.          (arg (texinfo-parse-line-arg))
  1157.          (node-name-beginning
  1158.           (save-excursion
  1159.             (re-search-backward
  1160.              "^File: \\w+\\(\\w\\|\\s_\\|\\.\\|,\\)*[ \t]+Node:")
  1161.             (match-end 0)))
  1162.          (node-name
  1163.           (save-excursion
  1164.             (buffer-substring
  1165.              (progn (goto-char node-name-beginning) ; skip over node command
  1166.                     (skip-chars-forward " \t")  ; and over spaces
  1167.                     (point))
  1168.              (if (search-forward
  1169.                   ","
  1170.                   (save-excursion (end-of-line) (point)) t) ; bound search
  1171.                  (1- (point))
  1172.                (end-of-line) (point))))))
  1173.     (texinfo-discard-command)  ; remove or insert whitespace, as needed
  1174.     (delete-region (save-excursion (skip-chars-backward " \t\n") (point))
  1175.                    (point))
  1176.     (insert (format " (%d) (*Note %s-Footnotes::)"
  1177.                     texinfo-footnote-number node-name))
  1178.     (fill-paragraph nil)
  1179.     (save-excursion
  1180.     (if (re-search-forward "^@node" nil 'move)
  1181.         (forward-line -1))
  1182.  
  1183.     ;; two cases: for the first footnote, we must insert a node header;
  1184.     ;; for the second and subsequent footnotes, we need only insert 
  1185.     ;; the text of the  footnote.
  1186.  
  1187.     (if (save-excursion
  1188.          (re-search-backward
  1189.           (concat node-name "-Footnotes, Up: ")
  1190.           node-name-beginning
  1191.           t))
  1192.         (progn   ; already at least one footnote
  1193.           (setq start (point))
  1194.           (insert (format "\n(%d)  %s\n" texinfo-footnote-number arg))
  1195.           (fill-region start (point)))
  1196.       ;; else not yet a footnote
  1197.       (insert "\n\^_\nFile: "  texinfo-format-filename
  1198.               "  Node: " node-name "-Footnotes, Up: " node-name "\n")
  1199.       (setq start (point))
  1200.       (insert (format "\n(%d)  %s\n" texinfo-footnote-number arg))
  1201.       (fill-region start (point))))))
  1202.  
  1203. (defun texinfo-format-end-node ()
  1204.   "Format footnote in the End of node style, with notes at end of node."
  1205.   (let (start
  1206.         (arg (texinfo-parse-line-arg)))
  1207.     (texinfo-discard-command)  ; remove or insert whitespace, as needed
  1208.     (delete-region (save-excursion (skip-chars-backward " \t\n") (point))
  1209.                    (point))
  1210.     (insert (format " (%d) " texinfo-footnote-number))
  1211.     (fill-paragraph nil)
  1212.     (save-excursion
  1213.       (if (search-forward "\n--------- Footnotes ---------\n" nil t)
  1214.           (progn ; already have footnote, put new one before end of node
  1215.             (if (re-search-forward "^@node" nil 'move)
  1216.                 (forward-line -1))
  1217.             (setq start (point))
  1218.             (insert (format "\n(%d)  %s\n" texinfo-footnote-number arg))
  1219.             (fill-region start (point)))
  1220.         ;; else no prior footnote
  1221.         (if (re-search-forward "^@node" nil 'move)
  1222.             (forward-line -1))
  1223.         (insert "\n--------- Footnotes ---------\n")
  1224.         (setq start (point))
  1225.         (insert (format "\n(%d)  %s\n" texinfo-footnote-number arg))))))
  1226.  
  1227.  
  1228. ;;; @itemize, @enumerate, and similar commands
  1229.  
  1230. ;; @itemize pushes (itemize "COMMANDS" STARTPOS) on texinfo-stack.
  1231. ;; @enumerate pushes (enumerate 0 STARTPOS).
  1232. ;; @item dispatches to the texinfo-item prop of the first elt of the list.
  1233. ;; For itemize, this puts in and rescans the COMMANDS.
  1234. ;; For enumerate, this increments the number and puts it in.
  1235. ;; In either case, it puts a Backspace at the front of the line
  1236. ;; which marks it not to be indented later.
  1237. ;; All other lines get indented by 5 when the @end is reached.
  1238.  
  1239. (defvar texinfo-stack-depth 0
  1240.   "Count of number of unpopped texinfo-push-stack calls.
  1241. Used by @refill indenting command to avoid indenting within lists, etc.")
  1242.  
  1243. (defun texinfo-push-stack (check arg)
  1244.   (setq texinfo-stack-depth (1+ texinfo-stack-depth))
  1245.   (setq texinfo-stack
  1246.         (cons (list check arg texinfo-command-start)
  1247.               texinfo-stack)))
  1248.  
  1249. (defun texinfo-pop-stack (check)
  1250.   (setq texinfo-stack-depth (1- texinfo-stack-depth))
  1251.   (if (null texinfo-stack)
  1252.       (error "Unmatched @end %s" check))
  1253.   (if (not (eq (car (car texinfo-stack)) check))
  1254.       (error "@end %s matches @%s"
  1255.              check (car (car texinfo-stack))))
  1256.   (prog1 (cdr (car texinfo-stack))
  1257.          (setq texinfo-stack (cdr texinfo-stack))))
  1258.  
  1259. (put 'itemize 'texinfo-format 'texinfo-itemize)
  1260. (defun texinfo-itemize ()
  1261.   (texinfo-push-stack
  1262.    'itemize
  1263.    (progn (skip-chars-forward " \t")
  1264.           (if (eolp)
  1265.               "@bullet"
  1266.             (texinfo-parse-line-arg))))
  1267.   (texinfo-discard-line-with-args)
  1268.   (setq fill-column (- fill-column 5)))
  1269.  
  1270. (put 'itemize 'texinfo-end 'texinfo-end-itemize)
  1271. (defun texinfo-end-itemize ()
  1272.   (setq fill-column (+ fill-column 5))
  1273.   (texinfo-discard-command)
  1274.   (let ((stacktop
  1275.          (texinfo-pop-stack 'itemize)))
  1276.     (texinfo-do-itemize (nth 1 stacktop))))
  1277.  
  1278. (put 'enumerate 'texinfo-format 'texinfo-enumerate)
  1279. (defun texinfo-enumerate ()
  1280.   (texinfo-push-stack
  1281.    'enumerate 
  1282.    (progn (skip-chars-forward " \t")
  1283.           (if (eolp)
  1284.               1
  1285.             (read (current-buffer)))))
  1286.   (if (and (symbolp (car (cdr (car texinfo-stack))))
  1287.            (> 1 (length (symbol-name (car (cdr (car texinfo-stack)))))))
  1288.       (error
  1289.        "@enumerate: Use a number or letter, eg: 1, A, a, 3, B, or d." ))
  1290.   (texinfo-discard-line-with-args)
  1291.   (setq fill-column (- fill-column 5)))
  1292.  
  1293. (put 'enumerate 'texinfo-end 'texinfo-end-enumerate)
  1294. (defun texinfo-end-enumerate ()
  1295.   (setq fill-column (+ fill-column 5))
  1296.   (texinfo-discard-command)
  1297.   (let ((stacktop
  1298.          (texinfo-pop-stack 'enumerate)))
  1299.     (texinfo-do-itemize (nth 1 stacktop))))
  1300.  
  1301. ;; @alphaenumerate never became a standard part of Texinfo
  1302. (put 'alphaenumerate 'texinfo-format 'texinfo-alphaenumerate)
  1303. (defun texinfo-alphaenumerate ()
  1304.   (texinfo-push-stack 'alphaenumerate (1- ?a))
  1305.   (setq fill-column (- fill-column 5))
  1306.   (texinfo-discard-line))
  1307.  
  1308. (put 'alphaenumerate 'texinfo-end 'texinfo-end-alphaenumerate)
  1309. (defun texinfo-end-alphaenumerate ()
  1310.   (setq fill-column (+ fill-column 5))
  1311.   (texinfo-discard-command)
  1312.   (let ((stacktop
  1313.          (texinfo-pop-stack 'alphaenumerate)))
  1314.     (texinfo-do-itemize (nth 1 stacktop))))
  1315.  
  1316. ;; @capsenumerate never became a standard part of Texinfo
  1317. (put 'capsenumerate 'texinfo-format 'texinfo-capsenumerate)
  1318. (defun texinfo-capsenumerate ()
  1319.   (texinfo-push-stack 'capsenumerate (1- ?A))
  1320.   (setq fill-column (- fill-column 5))
  1321.   (texinfo-discard-line))
  1322.  
  1323. (put 'capsenumerate 'texinfo-end 'texinfo-end-capsenumerate)
  1324. (defun texinfo-end-capsenumerate ()
  1325.   (setq fill-column (+ fill-column 5))
  1326.   (texinfo-discard-command)
  1327.   (let ((stacktop
  1328.          (texinfo-pop-stack 'capsenumerate)))
  1329.     (texinfo-do-itemize (nth 1 stacktop))))
  1330.  
  1331. ;; At the @end, indent all the lines within the construct
  1332. ;; except those marked with backspace.  FROM says where
  1333. ;; construct started.
  1334. (defun texinfo-do-itemize (from)
  1335.   (save-excursion
  1336.    (while (progn (forward-line -1)
  1337.                  (>= (point) from))
  1338.      (if (= (following-char) ?\b)
  1339.          (save-excursion
  1340.            (delete-char 1)
  1341.            (end-of-line)
  1342.            (delete-char 6))
  1343.        (if (not (looking-at "[ \t]*$"))
  1344.            (save-excursion (insert "     ")))))))
  1345.  
  1346. (put 'item 'texinfo-format 'texinfo-item)
  1347. (put 'itemx 'texinfo-format 'texinfo-item)
  1348. (defun texinfo-item ()
  1349.   (funcall (get (car (car texinfo-stack)) 'texinfo-item)))
  1350.  
  1351. (put 'itemize 'texinfo-item 'texinfo-itemize-item)
  1352. (defun texinfo-itemize-item ()
  1353.   ;; (texinfo-discard-line)   ; Did not handle text on same line as @item.
  1354.   (delete-region (1+ (point)) (save-excursion (beginning-of-line) (point)))
  1355.   (if (looking-at "[ \t]*[^ \t\n]+")
  1356.       ;; Text on same line as @item command.
  1357.       (insert "\b   " (nth 1 (car texinfo-stack)) " \n")
  1358.     ;; Else text on next line.
  1359.     (insert "\b   " (nth 1 (car texinfo-stack)) " "))
  1360.   (forward-line -1))
  1361.  
  1362. (put 'enumerate 'texinfo-item 'texinfo-enumerate-item)
  1363. (defun texinfo-enumerate-item ()
  1364.   (texinfo-discard-line)
  1365.   (let (enumerating-symbol)
  1366.     (cond ((integerp (car (cdr (car texinfo-stack))))
  1367.            (setq enumerating-symbol (car (cdr (car texinfo-stack))))
  1368.            (insert ?\b (format "%3d. " enumerating-symbol) ?\n)
  1369.            (setcar (cdr (car texinfo-stack)) (1+ enumerating-symbol)))
  1370.           ((symbolp (car (cdr (car texinfo-stack))))
  1371.            (setq enumerating-symbol
  1372.                  (symbol-name (car (cdr (car texinfo-stack)))))
  1373.            (if (or (equal ?\[ (string-to-char enumerating-symbol))
  1374.                    (equal ?\{ (string-to-char enumerating-symbol)))
  1375.                (error
  1376.                 "Too many items in enumerated list; alphabet ends at Z."))
  1377.            (insert ?\b (format "%3s. " enumerating-symbol) ?\n)
  1378.            (setcar (cdr (car texinfo-stack))
  1379.                    (make-symbol
  1380.                     (char-to-string
  1381.                      (1+ 
  1382.                       (string-to-char enumerating-symbol))))))
  1383.           (t
  1384.           (error
  1385.            "@enumerate: Use a number or letter, eg: 1, A, a, 3, B or d." )))
  1386.     (forward-line -1)))
  1387.  
  1388. (put 'alphaenumerate 'texinfo-item 'texinfo-alphaenumerate-item)
  1389. (defun texinfo-alphaenumerate-item ()
  1390.   (texinfo-discard-line)
  1391.   (let ((next (1+ (car (cdr (car texinfo-stack))))))
  1392.     (if (> next ?z)
  1393.         (error "More than 26 items in @alphaenumerate; get a bigger alphabet."))
  1394.     (setcar (cdr (car texinfo-stack)) next)
  1395.     (insert "\b  " next ". \n"))
  1396.   (forward-line -1))
  1397.  
  1398. (put 'capsenumerate 'texinfo-item 'texinfo-capsenumerate-item)
  1399. (defun texinfo-capsenumerate-item ()
  1400.   (texinfo-discard-line)
  1401.   (let ((next (1+ (car (cdr (car texinfo-stack))))))
  1402.     (if (> next ?Z)
  1403.         (error "More than 26 items in @capsenumerate; get a bigger alphabet."))
  1404.     (setcar (cdr (car texinfo-stack)) next)
  1405.     (insert "\b  " next ". \n"))
  1406.   (forward-line -1))
  1407.  
  1408.  
  1409. ;;; @table
  1410.  
  1411. ; The `@table' command produces two-column tables.
  1412.  
  1413. (put 'table 'texinfo-format 'texinfo-table)
  1414. (defun texinfo-table ()
  1415.   (texinfo-push-stack 
  1416.    'table 
  1417.    (progn (skip-chars-forward " \t")
  1418.           (if (eolp)
  1419.               "@asis"
  1420.             (texinfo-parse-line-arg))))
  1421.   (texinfo-discard-line-with-args)
  1422.   (setq fill-column (- fill-column 5)))
  1423.  
  1424. (put 'table 'texinfo-item 'texinfo-table-item)
  1425. (defun texinfo-table-item ()
  1426.   (let ((arg (texinfo-parse-arg-discard))
  1427.         (itemfont (car (cdr (car texinfo-stack)))))
  1428.     (insert ?\b itemfont ?\{ arg "}\n     \n"))
  1429.   (forward-line -2))
  1430.  
  1431. (put 'table 'texinfo-end 'texinfo-end-table)
  1432. (defun texinfo-end-table ()
  1433.   (setq fill-column (+ fill-column 5))
  1434.   (texinfo-discard-command)
  1435.   (let ((stacktop
  1436.          (texinfo-pop-stack 'table)))
  1437.     (texinfo-do-itemize (nth 1 stacktop))))
  1438.  
  1439. ;; @description appears to be an undocumented variant on @table that
  1440. ;; does not require an arg.  It fails in texinfo.tex 2.58 and is not
  1441. ;; part of makeinfo.c   The command appears to be a relic of the past.
  1442. (put 'description 'texinfo-end 'texinfo-end-table)
  1443. (put 'description 'texinfo-format 'texinfo-description)
  1444. (defun texinfo-description ()
  1445.   (texinfo-push-stack 'table "@asis")
  1446.   (setq fill-column (- fill-column 5))
  1447.   (texinfo-discard-line))
  1448.  
  1449.  
  1450. ;;; @ftable, @vtable
  1451.  
  1452. ; The `@ftable' and `@vtable' commands are like the `@table' command
  1453. ; but they also insert each entry in the first column of the table
  1454. ; into the function or variable index.
  1455.  
  1456. ;; Handle the @ftable and @vtable commands:
  1457.  
  1458. (put 'ftable 'texinfo-format 'texinfo-ftable)
  1459. (put 'vtable 'texinfo-format 'texinfo-vtable)
  1460.  
  1461. (defun texinfo-ftable () (texinfo-indextable 'ftable))
  1462. (defun texinfo-vtable () (texinfo-indextable 'vtable))
  1463.  
  1464. (defun texinfo-indextable (table-type)
  1465.   (texinfo-push-stack table-type (texinfo-parse-arg-discard))
  1466.   (setq fill-column (- fill-column 5)))
  1467.  
  1468. ;; Handle the @item commands within ftable and vtable:
  1469.  
  1470. (put 'ftable 'texinfo-item 'texinfo-ftable-item)
  1471. (put 'vtable 'texinfo-item 'texinfo-vtable-item)
  1472.  
  1473. (defun texinfo-ftable-item () (texinfo-indextable-item 'texinfo-findex))
  1474. (defun texinfo-vtable-item () (texinfo-indextable-item 'texinfo-vindex))
  1475.  
  1476. (defun texinfo-indextable-item (index-type)
  1477.   (let ((item (texinfo-parse-arg-discard))
  1478.         (itemfont (car (cdr (car texinfo-stack))))
  1479.         (indexvar index-type))
  1480.     (insert ?\b itemfont ?\{ item "}\n     \n")
  1481.     (set indexvar
  1482.          (cons
  1483.           (list item texinfo-last-node)
  1484.           (symbol-value indexvar)))
  1485.     (forward-line -2)))
  1486.  
  1487. ;; Handle @end ftable, @end vtable
  1488.  
  1489. (put 'ftable 'texinfo-end 'texinfo-end-ftable)
  1490. (put 'vtable 'texinfo-end 'texinfo-end-vtable)
  1491.  
  1492. (defun texinfo-end-ftable () (texinfo-end-indextable 'ftable))
  1493. (defun texinfo-end-vtable () (texinfo-end-indextable 'vtable))
  1494.  
  1495. (defun texinfo-end-indextable (table-type)
  1496.   (setq fill-column (+ fill-column 5))
  1497.   (texinfo-discard-command)
  1498.   (let ((stacktop
  1499.          (texinfo-pop-stack table-type)))
  1500.     (texinfo-do-itemize (nth 1 stacktop))))
  1501.  
  1502.  
  1503. ;;; @ifinfo,  @iftex, @tex, @ifhtml, @html
  1504.  
  1505. (put 'ifinfo 'texinfo-format 'texinfo-discard-line)
  1506. (put 'ifinfo 'texinfo-end 'texinfo-discard-command)
  1507.  
  1508. (put 'iftex 'texinfo-format 'texinfo-format-iftex)
  1509. (defun texinfo-format-iftex ()
  1510.   (delete-region texinfo-command-start
  1511.                  (progn (re-search-forward "@end iftex[ \t]*\n")
  1512.                         (point))))
  1513.  
  1514. (put 'ifhtml 'texinfo-format 'texinfo-format-ifhtml)
  1515. (defun texinfo-format-ifhtml ()
  1516.   (delete-region texinfo-command-start
  1517.                  (progn (re-search-forward "@end ifhtml[ \t]*\n")
  1518.                         (point))))
  1519.  
  1520. (put 'tex 'texinfo-format 'texinfo-format-tex)
  1521. (defun texinfo-format-tex ()
  1522.   (delete-region texinfo-command-start
  1523.                  (progn (re-search-forward "@end tex[ \t]*\n")
  1524.                         (point))))
  1525.  
  1526. (put 'html 'texinfo-format 'texinfo-format-html)
  1527. (defun texinfo-format-html ()
  1528.   (delete-region texinfo-command-start
  1529.                  (progn (re-search-forward "@end html[ \t]*\n")
  1530.                         (point))))
  1531.  
  1532.  
  1533. ;;; @titlepage
  1534.  
  1535. (put 'titlepage 'texinfo-format 'texinfo-format-titlepage)
  1536. (defun texinfo-format-titlepage ()
  1537.   (delete-region texinfo-command-start
  1538.                  (progn (re-search-forward "@end titlepage[ \t]*\n")
  1539.                         (point))))
  1540.  
  1541. (put 'endtitlepage 'texinfo-format 'texinfo-discard-line)
  1542.  
  1543. ; @titlespec         an alternative titling command; ignored by Info
  1544.  
  1545. (put 'titlespec 'texinfo-format 'texinfo-format-titlespec)
  1546. (defun texinfo-format-titlespec ()
  1547.   (delete-region texinfo-command-start
  1548.                  (progn (re-search-forward "@end titlespec[ \t]*\n")
  1549.                         (point))))
  1550.  
  1551. (put 'endtitlespec 'texinfo-format 'texinfo-discard-line)
  1552.  
  1553.  
  1554. ;;; @today
  1555.  
  1556. (put 'today 'texinfo-format 'texinfo-format-today)
  1557.  
  1558. ; Produces Day Month Year style of output.  eg `1 Jan 1900'
  1559. ; The `@today{}' command requires a pair of braces, like `@dots{}'.
  1560. (defun texinfo-format-today ()
  1561.   (texinfo-parse-arg-discard)
  1562.   (insert (format-time-string "%e %b %Y")))
  1563.  
  1564.  
  1565. ;;; @ignore
  1566.  
  1567. (put 'ignore 'texinfo-format 'texinfo-format-ignore)
  1568. (defun texinfo-format-ignore ()
  1569.   (delete-region texinfo-command-start
  1570.                  (progn (re-search-forward "@end ignore[ \t]*\n")
  1571.                         (point))))
  1572.  
  1573. (put 'endignore 'texinfo-format 'texinfo-discard-line)
  1574.  
  1575.  
  1576. ;;; Define the Info enclosure command: @definfoenclose
  1577.  
  1578. ; A `@definfoenclose' command may be used to define a highlighting
  1579. ; command for Info, but not for TeX.  A command defined using
  1580. ; `@definfoenclose' marks text by enclosing it in strings that precede
  1581. ; and follow the text.
  1582. ; Presumably, if you define a command with `@definfoenclose` for Info,
  1583. ; you will also define the same command in the TeX definitions file,
  1584. ; `texinfo.tex' in a manner appropriate for typesetting.
  1585. ; Write a `@definfoenclose' command on a line and follow it with three
  1586. ; arguments separated by commas (commas are used as separators in an
  1587. ; `@node' line in the same way).  The first argument to
  1588. ; `@definfoenclose' is the @-command name \(without the `@'\); the
  1589. ; second argument is the Info start delimiter string; and the third
  1590. ; argument is the Info end delimiter string.  The latter two arguments
  1591. ; enclose the highlighted text in the Info file.  A delimiter string
  1592. ; may contain spaces.  Neither the start nor end delimiter is
  1593. ; required.  However, if you do not provide a start delimiter, you
  1594. ; must follow the command name with two commas in a row; otherwise,
  1595. ; the Info formatting commands will misinterpret the end delimiter
  1596. ; string as a start delimiter string.
  1597. ;
  1598. ; If you do a @definfoenclose{} on the name of a pre-defined macro (such
  1599. ; as @emph{}, @strong{}, @tt{}, or @i{}) the enclosure definition will
  1600. ; override the built-in definition.
  1601. ; An enclosure command defined this way takes one argument in braces.
  1602. ;
  1603. ; For example, you can write:
  1604. ;
  1605. ;     @ifinfo
  1606. ;     @definfoenclose phoo, //, \\
  1607. ;     @end ifinfo
  1608. ;
  1609. ; near the beginning of a Texinfo file at the beginning of the lines
  1610. ; to define `@phoo' as an Info formatting command that inserts `//'
  1611. ; before and `\\' after the argument to `@phoo'.  You can then write
  1612. ; `@phoo{bar}' wherever you want `//bar\\' highlighted in Info.
  1613. ;
  1614. ; Also, for TeX formatting, you could write 
  1615. ;
  1616. ;     @iftex
  1617. ;     @global@let@phoo=@i
  1618. ;     @end iftex
  1619. ;
  1620. ; to define `@phoo' as a command that causes TeX to typeset
  1621. ; the argument to `@phoo' in italics.
  1622. ;
  1623. ; Note that each definition applies to its own formatter: one for TeX,
  1624. ; the other for texinfo-format-buffer or texinfo-format-region.
  1625. ;
  1626. ; Here is another example: write
  1627. ;
  1628. ;     @definfoenclose headword, , :
  1629. ;
  1630. ; near the beginning of the file, to define `@headword' as an Info
  1631. ; formatting command that inserts nothing before and a colon after the
  1632. ; argument to `@headword'.
  1633.  
  1634. (put 'definfoenclose 'texinfo-format 'texinfo-define-info-enclosure)
  1635. (defun texinfo-define-info-enclosure ()
  1636.   (let* ((args (texinfo-format-parse-line-args))
  1637.          (command-name (nth 0 args))
  1638.          (beginning-delimiter (or (nth 1 args) ""))
  1639.          (end-delimiter (or (nth 2 args) "")))
  1640.     (texinfo-discard-command)
  1641.     (setq texinfo-enclosure-list
  1642.         (cons
  1643.          (list command-name
  1644.                (list
  1645.                 beginning-delimiter
  1646.                 end-delimiter))
  1647.          texinfo-enclosure-list))))
  1648.  
  1649.  
  1650. ;;; @var, @code and the like
  1651.  
  1652. (put 'var 'texinfo-format 'texinfo-format-var)
  1653. ;  @sc  a small caps font for TeX; formatted as `var' in Info
  1654. (put 'sc 'texinfo-format 'texinfo-format-var)
  1655. (defun texinfo-format-var ()
  1656.   (insert (upcase (texinfo-parse-arg-discard)))
  1657.   (goto-char texinfo-command-start))
  1658.  
  1659. ; various noops
  1660.  
  1661. (put 'b 'texinfo-format 'texinfo-format-noop)
  1662. (put 'i 'texinfo-format 'texinfo-format-noop)
  1663. (put 'r 'texinfo-format 'texinfo-format-noop)
  1664. (put 't 'texinfo-format 'texinfo-format-noop)
  1665. (put 'w 'texinfo-format 'texinfo-format-noop)
  1666. (put 'asis 'texinfo-format 'texinfo-format-noop)
  1667. (put 'dmn 'texinfo-format 'texinfo-format-noop)
  1668. (put 'key 'texinfo-format 'texinfo-format-noop)
  1669. (put 'math 'texinfo-format 'texinfo-format-noop)
  1670. (put 'titlefont 'texinfo-format 'texinfo-format-noop)
  1671. (defun texinfo-format-noop ()
  1672.   (insert (texinfo-parse-arg-discard))
  1673.   (goto-char texinfo-command-start))
  1674.  
  1675. (put 'cite 'texinfo-format 'texinfo-format-code)
  1676. (put 'code 'texinfo-format 'texinfo-format-code)
  1677. (put 'file 'texinfo-format 'texinfo-format-code)
  1678. (put 'kbd 'texinfo-format 'texinfo-format-code)
  1679. (put 'samp 'texinfo-format 'texinfo-format-code)
  1680. (defun texinfo-format-code ()
  1681.   (insert "`" (texinfo-parse-arg-discard) "'")
  1682.   (goto-char texinfo-command-start))
  1683.  
  1684. (put 'emph 'texinfo-format 'texinfo-format-emph)
  1685. (put 'strong 'texinfo-format 'texinfo-format-emph)
  1686. (defun texinfo-format-emph ()
  1687.   (insert "*" (texinfo-parse-arg-discard) "*")
  1688.   (goto-char texinfo-command-start))
  1689.  
  1690. (put 'dfn 'texinfo-format 'texinfo-format-defn)
  1691. (put 'defn 'texinfo-format 'texinfo-format-defn)
  1692. (defun texinfo-format-defn ()
  1693.   (insert "\"" (texinfo-parse-arg-discard) "\"")
  1694.   (goto-char texinfo-command-start))
  1695.  
  1696. (put 'bullet 'texinfo-format 'texinfo-format-bullet)
  1697. (defun texinfo-format-bullet ()
  1698.   "Insert an asterisk.
  1699. If used within a line, follow `@bullet' with braces."
  1700.   (texinfo-optional-braces-discard)
  1701.   (insert "*"))
  1702.  
  1703.  
  1704. ;;; @example, @lisp, @quotation, @display, @smalllisp, @smallexample
  1705.  
  1706. (put 'display 'texinfo-format 'texinfo-format-example)
  1707. (put 'example 'texinfo-format 'texinfo-format-example)
  1708. (put 'lisp 'texinfo-format 'texinfo-format-example)
  1709. (put 'quotation 'texinfo-format 'texinfo-format-example)
  1710. (put 'smallexample 'texinfo-format 'texinfo-format-example)
  1711. (put 'smalllisp 'texinfo-format 'texinfo-format-example)
  1712. (defun texinfo-format-example ()
  1713.   (texinfo-push-stack 'example nil)
  1714.   (setq fill-column (- fill-column 5))
  1715.   (texinfo-discard-line))
  1716.  
  1717. (put 'example 'texinfo-end 'texinfo-end-example)
  1718. (put 'display 'texinfo-end 'texinfo-end-example)
  1719. (put 'lisp 'texinfo-end 'texinfo-end-example)
  1720. (put 'quotation 'texinfo-end 'texinfo-end-example)
  1721. (put 'smallexample 'texinfo-end 'texinfo-end-example)
  1722. (put 'smalllisp 'texinfo-end 'texinfo-end-example)
  1723. (defun texinfo-end-example ()
  1724.   (setq fill-column (+ fill-column 5))
  1725.   (texinfo-discard-command)
  1726.   (let ((stacktop
  1727.          (texinfo-pop-stack 'example)))
  1728.     (texinfo-do-itemize (nth 1 stacktop))))
  1729.  
  1730. (put 'exdent 'texinfo-format 'texinfo-format-exdent)
  1731. (defun texinfo-format-exdent ()
  1732.   (texinfo-discard-command)
  1733.   (delete-region (point)
  1734.                  (progn
  1735.                   (skip-chars-forward " ")
  1736.                   (point)))
  1737.   (insert ?\b)
  1738.   ;; Cancel out the deletion that texinfo-do-itemize
  1739.   ;; is going to do at the end of this line.
  1740.   (save-excursion
  1741.     (end-of-line)
  1742.     (insert "\n     ")))
  1743.  
  1744.  
  1745. ;;; @cartouche 
  1746.  
  1747. ; The @cartouche command is a noop in Info; in a printed manual,
  1748. ; it makes a box with rounded corners.
  1749.  
  1750. (put 'cartouche 'texinfo-format 'texinfo-discard-line)
  1751. (put 'cartouche 'texinfo-end 'texinfo-discard-command)
  1752.  
  1753.  
  1754. ;;; @flushleft and @format
  1755.  
  1756. ; The @flushleft command left justifies every line but leaves the
  1757. ; right end ragged.  As far as Info is concerned, @flushleft is a
  1758. ; `do-nothing' command
  1759.  
  1760. ; The @format command is similar to @example except that it does not
  1761. ; indent; this means that in Info, @format is similar to @flushleft.
  1762.  
  1763. (put 'format 'texinfo-format 'texinfo-format-flushleft)
  1764. (put 'flushleft 'texinfo-format 'texinfo-format-flushleft)
  1765. (defun texinfo-format-flushleft ()
  1766.   (texinfo-discard-line))
  1767.  
  1768. (put 'format 'texinfo-end 'texinfo-end-flushleft)
  1769. (put 'flushleft 'texinfo-end 'texinfo-end-flushleft)
  1770. (defun texinfo-end-flushleft ()
  1771.   (texinfo-discard-command))
  1772.  
  1773.  
  1774. ;;; @flushright
  1775.  
  1776. ; The @flushright command right justifies every line but leaves the
  1777. ; left end ragged.  Spaces and tabs at the right ends of lines are
  1778. ; removed so that visible text lines up on the right side.
  1779.  
  1780. (put 'flushright 'texinfo-format 'texinfo-format-flushright)
  1781. (defun texinfo-format-flushright ()
  1782.   (texinfo-push-stack 'flushright nil)
  1783.   (texinfo-discard-line))
  1784.  
  1785. (put 'flushright 'texinfo-end 'texinfo-end-flushright)
  1786. (defun texinfo-end-flushright ()
  1787.   (texinfo-discard-command)
  1788.  
  1789.   (let ((stacktop
  1790.          (texinfo-pop-stack 'flushright)))
  1791.  
  1792.     (texinfo-do-flushright (nth 1 stacktop))))
  1793.  
  1794. (defun texinfo-do-flushright (from)
  1795.   (save-excursion
  1796.    (while (progn (forward-line -1)
  1797.                  (>= (point) from))
  1798.  
  1799.      (beginning-of-line)
  1800.      (insert
  1801.       (make-string
  1802.        (- fill-column
  1803.           (save-excursion
  1804.             (end-of-line) 
  1805.             (skip-chars-backward " \t")
  1806.             (delete-region (point) (progn (end-of-line) (point)))
  1807.             (current-column)))  
  1808.        ? )))))
  1809.  
  1810.  
  1811. ;;; @ctrl, @TeX, @copyright, @minus, @dots
  1812.  
  1813. (put 'ctrl 'texinfo-format 'texinfo-format-ctrl)
  1814. (defun texinfo-format-ctrl ()
  1815.   (let ((str (texinfo-parse-arg-discard)))
  1816.     (insert (logand 31 (aref str 0)))))
  1817.  
  1818. (put 'TeX 'texinfo-format 'texinfo-format-TeX)
  1819. (defun texinfo-format-TeX ()
  1820.   (texinfo-parse-arg-discard)
  1821.   (insert "TeX"))
  1822.  
  1823. (put 'copyright 'texinfo-format 'texinfo-format-copyright)
  1824. (defun texinfo-format-copyright ()
  1825.   (texinfo-parse-arg-discard)
  1826.   (insert "(C)"))
  1827.  
  1828. (put 'minus 'texinfo-format 'texinfo-format-minus)
  1829. (defun texinfo-format-minus ()
  1830.   "Insert a minus sign.
  1831. If used within a line, follow `@minus' with braces."
  1832.   (texinfo-optional-braces-discard)
  1833.   (insert "-"))
  1834.  
  1835. (put 'dots 'texinfo-format 'texinfo-format-dots)
  1836. (defun texinfo-format-dots ()
  1837.   (texinfo-parse-arg-discard)
  1838.   (insert "..."))
  1839.  
  1840. (put 'enddots 'texinfo-format 'texinfo-format-enddots)
  1841. (defun texinfo-format-enddots ()
  1842.   (texinfo-parse-arg-discard)
  1843.   (insert "...."))
  1844.  
  1845.  
  1846. ;;; Refilling and indenting:  @refill, @paragraphindent, @noindent
  1847.  
  1848. ;;; Indent only those paragraphs that are refilled as a result of an
  1849. ;;; @refill command.  
  1850.  
  1851. ;    * If the value is `asis', do not change the existing indentation at
  1852. ;      the starts of paragraphs.
  1853.  
  1854. ;    * If the value zero, delete any existing indentation.
  1855.  
  1856. ;    * If the value is greater than zero, indent each paragraph by that
  1857. ;      number of spaces.
  1858.  
  1859. ;;; But do not refill paragraphs with an @refill command that are
  1860. ;;; preceded by @noindent or are part of a table, list, or deffn.
  1861.  
  1862. (defvar texinfo-paragraph-indent "asis"
  1863.   "Number of spaces for @refill to indent a paragraph; else to leave as is.")
  1864.  
  1865. (put 'paragraphindent 'texinfo-format 'texinfo-paragraphindent)
  1866.  
  1867. (defun texinfo-paragraphindent ()
  1868.   "Specify the number of spaces for @refill to indent a paragraph.
  1869. Default is to leave the number of spaces as is."
  1870.   (let ((arg  (texinfo-parse-arg-discard)))
  1871.     (if (string= "asis" arg)
  1872.         (setq texinfo-paragraph-indent "asis")
  1873.       (setq texinfo-paragraph-indent (string-to-int arg)))))
  1874.  
  1875. (put 'refill 'texinfo-format 'texinfo-format-refill)
  1876. (defun texinfo-format-refill ()
  1877.   "Refill paragraph. Also, indent first line as set by @paragraphindent.
  1878. Default is to leave paragraph indentation as is."
  1879.   (texinfo-discard-command)
  1880.   (forward-paragraph -1)     
  1881.   (if (looking-at "[ \t\n]*$") (forward-line 1))
  1882.   ;; Do not indent if an entry in a list, table, or deffn,
  1883.   ;; or if paragraph is preceded by @noindent.
  1884.   ;; Otherwise, indent
  1885.   (cond 
  1886.    ;; delete a @noindent line and do not indent paragraph
  1887.    ((save-excursion (forward-line -1)
  1888.                     (looking-at "^@noindent")) 
  1889.     (forward-line -1)
  1890.     (delete-region (point) (progn (forward-line 1) (point))))
  1891.    ;; do nothing if "asis"
  1892.    ((equal texinfo-paragraph-indent "asis"))
  1893.    ;; do no indenting in list, etc.
  1894.    ((> texinfo-stack-depth 0))   
  1895.    ;; otherwise delete existing whitespace and indent
  1896.    (t 
  1897.     (delete-region (point) (progn (skip-chars-forward " \t") (point)))
  1898.     (insert (make-string texinfo-paragraph-indent ? ))))
  1899.   (forward-paragraph 1) 
  1900.   (forward-line -1)
  1901.   (end-of-line)
  1902.   ;; Do not fill a section title line with asterisks, hyphens, etc. that
  1903.   ;; are used to underline it.  This could occur if the line following
  1904.   ;; the underlining is not an index entry and has text within it.
  1905.   (let* ((previous-paragraph-separate paragraph-separate)
  1906.          (paragraph-separate (concat paragraph-separate "\\|[-=*.]+"))
  1907.          (previous-paragraph-start paragraph-start)
  1908.          (paragraph-start (concat paragraph-start "\\|[-=*.]+")))
  1909.     (unwind-protect
  1910.         (fill-paragraph nil)
  1911.       (setq paragraph-separate previous-paragraph-separate)
  1912.       (setq paragraph-start previous-paragraph-start))))
  1913.  
  1914. (put 'noindent 'texinfo-format 'texinfo-noindent)
  1915. (defun texinfo-noindent ()  
  1916.   (save-excursion 
  1917.     (forward-paragraph 1)
  1918.     (if (search-backward "@refill"
  1919.                             (save-excursion (forward-line -1) (point)) t)
  1920.         () ; leave @noindent command so @refill command knows not to indent
  1921.       ;; else
  1922.       (texinfo-discard-line))))
  1923.  
  1924.  
  1925. ;;; Index generation
  1926.  
  1927. (put 'vindex 'texinfo-format 'texinfo-format-vindex)
  1928. (defun texinfo-format-vindex ()
  1929.   (texinfo-index 'texinfo-vindex))
  1930.  
  1931. (put 'cindex 'texinfo-format 'texinfo-format-cindex)
  1932. (defun texinfo-format-cindex ()
  1933.   (texinfo-index 'texinfo-cindex))
  1934.  
  1935. (put 'findex 'texinfo-format 'texinfo-format-findex)
  1936. (defun texinfo-format-findex ()
  1937.   (texinfo-index 'texinfo-findex))
  1938.  
  1939. (put 'pindex 'texinfo-format 'texinfo-format-pindex)
  1940. (defun texinfo-format-pindex ()
  1941.   (texinfo-index 'texinfo-pindex))
  1942.  
  1943. (put 'tindex 'texinfo-format 'texinfo-format-tindex)
  1944. (defun texinfo-format-tindex ()
  1945.   (texinfo-index 'texinfo-tindex))
  1946.  
  1947. (put 'kindex 'texinfo-format 'texinfo-format-kindex)
  1948. (defun texinfo-format-kindex ()
  1949.   (texinfo-index 'texinfo-kindex))
  1950.  
  1951. (defun texinfo-index (indexvar)
  1952.   (let ((arg (texinfo-parse-expanded-arg)))
  1953.     (texinfo-discard-command)
  1954.     (set indexvar
  1955.          (cons (list arg
  1956.                      texinfo-last-node
  1957.                      ;; Region formatting may not provide last node position.
  1958.                      (if texinfo-last-node-pos
  1959.                          (1+ (count-lines texinfo-last-node-pos (point)))
  1960.                        1))
  1961.                (symbol-value indexvar)))))
  1962.  
  1963. (defconst texinfo-indexvar-alist
  1964.   '(("cp" . texinfo-cindex)
  1965.     ("fn" . texinfo-findex)
  1966.     ("vr" . texinfo-vindex)
  1967.     ("tp" . texinfo-tindex)
  1968.     ("pg" . texinfo-pindex)
  1969.     ("ky" . texinfo-kindex)))
  1970.  
  1971.  
  1972. ;;; @defindex   @defcodeindex
  1973. (put 'defindex 'texinfo-format 'texinfo-format-defindex)
  1974. (put 'defcodeindex 'texinfo-format 'texinfo-format-defindex)
  1975.  
  1976. (defun texinfo-format-defindex ()
  1977.   (let* ((index-name (texinfo-parse-arg-discard)) ; eg: `aa'
  1978.          (indexing-command (intern (concat index-name "index")))
  1979.          (index-formatting-command      ; eg: `texinfo-format-aaindex'
  1980.           (intern (concat "texinfo-format-" index-name "index")))
  1981.          (index-alist-name              ; eg: `texinfo-aaindex'
  1982.           (intern (concat "texinfo-" index-name "index"))))
  1983.  
  1984.     (set index-alist-name nil)
  1985.  
  1986.     (put indexing-command               ; eg, aaindex
  1987.          'texinfo-format
  1988.          index-formatting-command)      ; eg, texinfo-format-aaindex
  1989.  
  1990.     ;; eg: "aa" . texinfo-aaindex
  1991.     (or (assoc index-name texinfo-indexvar-alist)
  1992.         (setq texinfo-indexvar-alist
  1993.               (cons
  1994.                (cons index-name
  1995.                      index-alist-name)
  1996.                texinfo-indexvar-alist)))
  1997.  
  1998.     (fset index-formatting-command
  1999.           (list 'lambda 'nil
  2000.                 (list 'texinfo-index 
  2001.                       (list 'quote index-alist-name))))))
  2002.  
  2003.  
  2004. ;;; @synindex   @syncodeindex
  2005.  
  2006. (put 'synindex 'texinfo-format 'texinfo-format-synindex)
  2007. (put 'syncodeindex 'texinfo-format 'texinfo-format-synindex)
  2008.  
  2009. (defun texinfo-format-synindex ()
  2010.   (let* ((args (texinfo-parse-arg-discard))
  2011.          (second (cdr (read-from-string args)))
  2012.          (joiner (symbol-name (car (read-from-string args))))
  2013.          (joined (symbol-name (car (read-from-string args second)))))
  2014.  
  2015.     (if (assoc joiner texinfo-short-index-cmds-alist)
  2016.         (put
  2017.           (cdr (assoc joiner texinfo-short-index-cmds-alist))
  2018.          'texinfo-format
  2019.          (or (cdr (assoc joined texinfo-short-index-format-cmds-alist))
  2020.              (intern (concat "texinfo-format-" joined "index"))))
  2021.       (put
  2022.        (intern (concat joiner "index"))
  2023.        'texinfo-format
  2024.        (or (cdr(assoc joined texinfo-short-index-format-cmds-alist))
  2025.            (intern (concat "texinfo-format-" joined "index")))))))
  2026.  
  2027. (defconst texinfo-short-index-cmds-alist
  2028.   '(("cp" . cindex)
  2029.     ("fn" . findex)
  2030.     ("vr" . vindex)
  2031.     ("tp" . tindex)
  2032.     ("pg" . pindex)
  2033.     ("ky" . kindex)))
  2034.  
  2035. (defconst texinfo-short-index-format-cmds-alist
  2036.   '(("cp" . texinfo-format-cindex)
  2037.     ("fn" . texinfo-format-findex)
  2038.     ("vr" . texinfo-format-vindex)
  2039.     ("tp" . texinfo-format-tindex)
  2040.     ("pg" . texinfo-format-pindex)
  2041.     ("ky" . texinfo-format-kindex)))
  2042.  
  2043.  
  2044. ;;; Sort and index (for VMS)
  2045.  
  2046. ;; Sort an index which is in the current buffer between START and END.
  2047. ;; Used on VMS, where the `sort' utility is not available.
  2048. (defun texinfo-sort-region (start end)
  2049.   (require 'sort)
  2050.   (save-restriction
  2051.     (narrow-to-region start end)
  2052.     (sort-subr nil 'forward-line 'end-of-line 'texinfo-sort-startkeyfun)))
  2053.  
  2054. ;; Subroutine for sorting an index.
  2055. ;; At start of a line, return a string to sort the line under.
  2056. (defun texinfo-sort-startkeyfun ()
  2057.   (let ((line
  2058.          (buffer-substring (point) (save-excursion (end-of-line) (point)))))
  2059.     ;; Canonicalize whitespace and eliminate funny chars.
  2060.     (while (string-match "[ \t][ \t]+\\|[^a-z0-9 ]+" line)
  2061.       (setq line (concat (substring line 0 (match-beginning 0))
  2062.                          " "
  2063.                          (substring line (match-end 0) (length line)))))
  2064.     line))
  2065.  
  2066.  
  2067. ;;; @printindex
  2068.  
  2069. (put 'printindex 'texinfo-format 'texinfo-format-printindex)
  2070.  
  2071. (defun texinfo-format-printindex ()
  2072.   (let ((indexelts (symbol-value
  2073.                     (cdr (assoc (texinfo-parse-arg-discard)
  2074.                                 texinfo-indexvar-alist))))
  2075.         opoint)
  2076.     (insert "\n* Menu:\n\n")
  2077.     (setq opoint (point))
  2078.     (texinfo-print-index nil indexelts)
  2079.  
  2080.     (if (eq system-type 'vax-vms)
  2081.         (texinfo-sort-region opoint (point))
  2082.       (shell-command-on-region opoint (point) "sort -fd" 1))))
  2083.  
  2084. (defun texinfo-print-index (file indexelts)
  2085.   (while indexelts
  2086.     (if (stringp (car (car indexelts)))
  2087.         (progn
  2088.           (insert "* " (car (car indexelts)) ": " )
  2089.           (indent-to 32)
  2090.           (insert
  2091.            (if file (concat "(" file ")") "")
  2092.            (nth 1 (car indexelts)) ".")
  2093.           (indent-to 54)
  2094.           (insert
  2095.            (if (nth 2 (car indexelts))
  2096.                (format "  %d." (nth 2 (car indexelts)))
  2097.              "")
  2098.            "\n"))
  2099.       ;; index entries from @include'd file
  2100.       (texinfo-print-index (nth 1 (car indexelts))
  2101.                            (nth 2 (car indexelts))))
  2102.     (setq indexelts (cdr indexelts))))
  2103.  
  2104.  
  2105. ;;; Glyphs: @equiv, @error, etc
  2106.  
  2107. ;; @equiv           to show that two expressions are equivalent
  2108. ;; @error           to show an error message
  2109. ;; @expansion       to show what a macro expands to
  2110. ;; @point           to show the location of point in an example
  2111. ;; @print           to show what an evaluated expression prints
  2112. ;; @result          to indicate the value returned by an expression
  2113.  
  2114. (put 'equiv 'texinfo-format 'texinfo-format-equiv)
  2115. (defun texinfo-format-equiv ()
  2116.   (texinfo-parse-arg-discard)
  2117.   (insert "=="))
  2118.  
  2119. (put 'error 'texinfo-format 'texinfo-format-error)
  2120. (defun texinfo-format-error ()
  2121.   (texinfo-parse-arg-discard)
  2122.   (insert "error-->"))
  2123.  
  2124. (put 'expansion 'texinfo-format 'texinfo-format-expansion)
  2125. (defun texinfo-format-expansion ()
  2126.   (texinfo-parse-arg-discard)
  2127.   (insert "==>"))
  2128.  
  2129. (put 'point 'texinfo-format 'texinfo-format-point)
  2130. (defun texinfo-format-point ()
  2131.   (texinfo-parse-arg-discard)
  2132.   (insert "-!-"))
  2133.  
  2134. (put 'print 'texinfo-format 'texinfo-format-print)
  2135. (defun texinfo-format-print ()
  2136.   (texinfo-parse-arg-discard)
  2137.   (insert "-|"))
  2138.  
  2139. (put 'result 'texinfo-format 'texinfo-format-result)
  2140. (defun texinfo-format-result ()
  2141.   (texinfo-parse-arg-discard)
  2142.   (insert "=>"))
  2143.  
  2144.  
  2145. ;;; Definition formatting: @deffn, @defun, etc
  2146.  
  2147. ;; What definition formatting produces:
  2148. ;;
  2149. ;; @deffn category name args...
  2150. ;;     In Info, `Category: name ARGS'
  2151. ;;     In index: name:  node. line#.
  2152. ;;
  2153. ;; @defvr category name 
  2154. ;;     In Info, `Category: name'
  2155. ;;     In index: name:  node. line#.
  2156. ;;
  2157. ;; @deftp category name attributes...
  2158. ;; `category name attributes...'       Note: @deftp args in lower case.
  2159. ;;     In index: name:  node. line#.
  2160. ;;
  2161. ;; Specialized function-like or variable-like entity:
  2162. ;;
  2163. ;; @defun, @defmac, @defspec, @defvar, @defopt
  2164. ;;
  2165. ;; @defun name args           In Info, `Function: name ARGS'
  2166. ;; @defmac name args          In Info, `Macro: name ARGS'
  2167. ;; @defvar name               In Info, `Variable: name'
  2168. ;; etc.
  2169. ;;     In index: name:  node. line#.
  2170. ;;
  2171. ;; Generalized typed-function-like or typed-variable-like entity:
  2172. ;; @deftypefn category data-type name args...
  2173. ;;     In Info, `Category:  data-type name args...'
  2174. ;; @deftypevr category data-type name 
  2175. ;;     In Info, `Category:  data-type name'
  2176. ;;     In index: name:  node. line#.
  2177. ;;
  2178. ;; Specialized typed-function-like or typed-variable-like entity:
  2179. ;; @deftypefun data-type name args...
  2180. ;;     In Info, `Function:  data-type name ARGS'
  2181. ;;     In index: name:  node. line#.   
  2182. ;;
  2183. ;; @deftypevar data-type name 
  2184. ;;     In Info, `Variable:  data-type name'
  2185. ;;     In index: name:  node. line#.   but include args after name!?
  2186. ;;
  2187. ;; Generalized object oriented entity: 
  2188. ;; @defop category class name args...
  2189. ;;     In Info, `Category on class: name ARG'
  2190. ;;     In index: name on class: node. line#.
  2191. ;;
  2192. ;; @defcv category class name         
  2193. ;;     In Info, `Category of class: name'
  2194. ;;     In index: name of class: node. line#.
  2195. ;;
  2196. ;; Specialized object oriented entity:
  2197. ;; @defmethod class name args... 
  2198. ;;     In Info, `Method on class: name ARGS'
  2199. ;;     In index: name on class: node. line#.
  2200. ;;
  2201. ;; @defivar class name
  2202. ;;     In Info, `Instance variable of class: name'
  2203. ;;     In index: name of class: node. line#.
  2204.  
  2205.  
  2206. ;;; The definition formatting functions
  2207.  
  2208. (defun texinfo-format-defun ()
  2209.   (texinfo-push-stack 'defun nil)
  2210.   (setq fill-column (- fill-column 5))
  2211.   (texinfo-format-defun-1 t))
  2212.  
  2213. (defun texinfo-end-defun ()
  2214.   (setq fill-column (+ fill-column 5))
  2215.   (texinfo-discard-command)
  2216.   (let ((start (nth 1 (texinfo-pop-stack 'defun))))
  2217.     (texinfo-do-itemize start)
  2218.     ;; Delete extra newline inserted after header.
  2219.     (save-excursion
  2220.       (goto-char start)
  2221.       (delete-char -1))))
  2222.  
  2223. (defun texinfo-format-defunx ()
  2224.   (texinfo-format-defun-1 nil))
  2225.  
  2226. (defun texinfo-format-defun-1 (first-p)
  2227.   (let ((parse-args (texinfo-format-parse-defun-args))
  2228.         (texinfo-defun-type (get texinfo-command-name 'texinfo-defun-type)))
  2229.     (texinfo-discard-command)
  2230.     ;; Delete extra newline inserted after previous header line.
  2231.     (if (not first-p)
  2232.         (delete-char -1))
  2233.     (funcall
  2234.      (get texinfo-command-name 'texinfo-deffn-formatting-property) parse-args)
  2235.     ;; Insert extra newline so that paragraph filling does not mess
  2236.     ;; with header line.
  2237.     (insert "\n\n")
  2238.     (rplaca (cdr (cdr (car texinfo-stack))) (point))
  2239.     (funcall
  2240.      (get texinfo-command-name 'texinfo-defun-indexing-property) parse-args)))
  2241.  
  2242. ;;; Formatting the first line of a definition
  2243.  
  2244. ;; @deffn, @defvr, @deftp
  2245. (put 'deffn 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
  2246. (put 'deffnx 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
  2247. (put 'defvr 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
  2248. (put 'defvrx 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
  2249. (put 'deftp 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
  2250. (put 'deftpx 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
  2251. (defun texinfo-format-deffn (parsed-args)
  2252.   ;; Generalized function-like, variable-like, or generic data-type entity:
  2253.   ;; @deffn category name args...
  2254.   ;;     In Info, `Category: name ARGS'
  2255.   ;; @deftp category name attributes...
  2256.   ;; `category name attributes...'       Note: @deftp args in lower case.
  2257.   (let ((category (car parsed-args))
  2258.         (name (car (cdr parsed-args)))
  2259.         (args (cdr (cdr parsed-args))))
  2260.     (insert " -- " category ": " name)
  2261.     (while args
  2262.       (insert " "
  2263.               (if (or (= ?& (aref (car args) 0))
  2264.                       (eq (eval (car texinfo-defun-type)) 'deftp-type))
  2265.                   (car args)
  2266.                 (upcase (car args))))
  2267.       (setq args (cdr args)))))
  2268.  
  2269. ;; @defun, @defmac, @defspec, @defvar, @defopt: Specialized, simple
  2270. (put 'defun 'texinfo-deffn-formatting-property
  2271.      'texinfo-format-specialized-defun)
  2272. (put 'defunx 'texinfo-deffn-formatting-property
  2273.      'texinfo-format-specialized-defun)
  2274. (put 'defmac 'texinfo-deffn-formatting-property
  2275.      'texinfo-format-specialized-defun)
  2276. (put 'defmacx 'texinfo-deffn-formatting-property
  2277.      'texinfo-format-specialized-defun)
  2278. (put 'defspec 'texinfo-deffn-formatting-property
  2279.      'texinfo-format-specialized-defun)
  2280. (put 'defspecx 'texinfo-deffn-formatting-property
  2281.      'texinfo-format-specialized-defun)
  2282. (put 'defvar 'texinfo-deffn-formatting-property
  2283.      'texinfo-format-specialized-defun)
  2284. (put 'defvarx 'texinfo-deffn-formatting-property
  2285.      'texinfo-format-specialized-defun)
  2286. (put 'defopt 'texinfo-deffn-formatting-property
  2287.      'texinfo-format-specialized-defun)
  2288. (put 'defoptx 'texinfo-deffn-formatting-property
  2289.      'texinfo-format-specialized-defun)
  2290. (defun texinfo-format-specialized-defun (parsed-args)
  2291.   ;; Specialized function-like or variable-like entity:
  2292.   ;; @defun name args           In Info, `Function: Name ARGS'
  2293.   ;; @defmac name args          In Info, `Macro: Name ARGS'
  2294.   ;; @defvar name               In Info, `Variable: Name'
  2295.   ;; Use cdr of texinfo-defun-type to determine category:
  2296.   (let ((category (car (cdr texinfo-defun-type)))
  2297.         (name (car parsed-args))
  2298.         (args (cdr parsed-args)))
  2299.     (insert " -- " category ": " name)
  2300.     (while args
  2301.       (insert " "
  2302.               (if (= ?& (aref (car args) 0))
  2303.                   (car args)
  2304.                 (upcase (car args))))
  2305.       (setq args (cdr args)))))
  2306.  
  2307. ;; @deftypefn, @deftypevr: Generalized typed
  2308. (put 'deftypefn 'texinfo-deffn-formatting-property 'texinfo-format-deftypefn)
  2309. (put 'deftypefnx 'texinfo-deffn-formatting-property 'texinfo-format-deftypefn)
  2310. (put 'deftypevr 'texinfo-deffn-formatting-property 'texinfo-format-deftypefn)
  2311. (put 'deftypevrx 'texinfo-deffn-formatting-property 'texinfo-format-deftypefn)
  2312. (defun texinfo-format-deftypefn (parsed-args)
  2313.   ;; Generalized typed-function-like or typed-variable-like entity:
  2314.   ;; @deftypefn category data-type name args...
  2315.   ;;     In Info, `Category:  data-type name args...'
  2316.   ;; @deftypevr category data-type name 
  2317.   ;;     In Info, `Category:  data-type name'
  2318.   ;; Note: args in lower case, unless modified in command line.
  2319.   (let ((category (car parsed-args))
  2320.         (data-type (car (cdr parsed-args)))
  2321.         (name (car (cdr (cdr parsed-args))))
  2322.         (args (cdr (cdr (cdr parsed-args)))))
  2323.     (insert " -- " category ": " data-type " " name)
  2324.     (while args
  2325.       (insert " " (car args))
  2326.       (setq args (cdr args)))))
  2327.  
  2328. ;; @deftypefun, @deftypevar: Specialized typed
  2329. (put 'deftypefun 'texinfo-deffn-formatting-property 'texinfo-format-deftypefun)
  2330. (put 'deftypefunx 'texinfo-deffn-formatting-property
  2331.      'texinfo-format-deftypefun)
  2332. (put 'deftypevar 'texinfo-deffn-formatting-property 'texinfo-format-deftypefun)
  2333. (put 'deftypevarx 'texinfo-deffn-formatting-property
  2334.      'texinfo-format-deftypefun)
  2335. (defun texinfo-format-deftypefun (parsed-args)
  2336.   ;; Specialized typed-function-like or typed-variable-like entity:
  2337.   ;; @deftypefun data-type name args...
  2338.   ;;     In Info, `Function:  data-type name ARGS'
  2339.   ;; @deftypevar data-type name 
  2340.   ;;     In Info, `Variable:  data-type name'
  2341.   ;; Note: args in lower case, unless modified in command line.
  2342.   ;; Use cdr of texinfo-defun-type to determine category:
  2343.   (let ((category (car (cdr texinfo-defun-type)))
  2344.         (data-type (car parsed-args))
  2345.         (name (car (cdr  parsed-args)))
  2346.         (args (cdr (cdr parsed-args))))
  2347.     (insert " -- " category ": " data-type " " name)
  2348.     (while args
  2349.       (insert " " (car args))
  2350.       (setq args (cdr args)))))
  2351.  
  2352. ;; @defop: Generalized object-oriented
  2353. (put 'defop 'texinfo-deffn-formatting-property 'texinfo-format-defop)
  2354. (put 'defopx 'texinfo-deffn-formatting-property 'texinfo-format-defop)
  2355. (defun texinfo-format-defop (parsed-args)
  2356.   ;; Generalized object oriented entity: 
  2357.   ;; @defop category class name args...
  2358.   ;;     In Info, `Category on class: name ARG'
  2359.   ;; Note: args in upper case; use of `on'
  2360.   (let ((category (car parsed-args))
  2361.         (class (car (cdr parsed-args)))
  2362.         (name (car (cdr (cdr parsed-args))))
  2363.         (args (cdr (cdr (cdr parsed-args)))))
  2364.     (insert " -- " category " on " class ": " name)
  2365.     (while args
  2366.       (insert " " (upcase (car args)))
  2367.       (setq args (cdr args)))))
  2368.  
  2369. ;; @defcv: Generalized object-oriented
  2370. (put 'defcv 'texinfo-deffn-formatting-property 'texinfo-format-defcv)
  2371. (put 'defcvx 'texinfo-deffn-formatting-property 'texinfo-format-defcv)
  2372. (defun texinfo-format-defcv (parsed-args)
  2373.   ;; Generalized object oriented entity: 
  2374.   ;; @defcv category class name         
  2375.   ;;     In Info, `Category of class: name'
  2376.   ;; Note: args in upper case; use of `of'
  2377.   (let ((category (car parsed-args))
  2378.         (class (car (cdr parsed-args)))
  2379.         (name (car (cdr (cdr parsed-args))))
  2380.         (args (cdr (cdr (cdr parsed-args)))))
  2381.     (insert " -- " category " of " class ": " name)
  2382.     (while args
  2383.       (insert " " (upcase (car args)))
  2384.       (setq args (cdr args)))))
  2385.  
  2386. ;; @defmethod: Specialized object-oriented
  2387. (put 'defmethod 'texinfo-deffn-formatting-property 'texinfo-format-defmethod)
  2388. (put 'defmethodx 'texinfo-deffn-formatting-property 'texinfo-format-defmethod)
  2389. (defun texinfo-format-defmethod (parsed-args)
  2390.   ;; Specialized object oriented entity:
  2391.   ;; @defmethod class name args... 
  2392.   ;;     In Info, `Method on class: name ARGS'
  2393.   ;; Note: args in upper case; use of `on'
  2394.   ;; Use cdr of texinfo-defun-type to determine category:
  2395.   (let ((category (car (cdr texinfo-defun-type)))
  2396.         (class (car parsed-args))
  2397.         (name (car (cdr  parsed-args)))
  2398.         (args (cdr  (cdr parsed-args))))
  2399.     (insert " -- " category " on " class ": " name)
  2400.     (while args
  2401.       (insert " " (upcase (car args)))
  2402.       (setq args (cdr args)))))
  2403.  
  2404. ;; @defivar: Specialized object-oriented
  2405. (put 'defivar 'texinfo-deffn-formatting-property 'texinfo-format-defivar)
  2406. (put 'defivarx 'texinfo-deffn-formatting-property 'texinfo-format-defivar)
  2407. (defun texinfo-format-defivar (parsed-args)
  2408.   ;; Specialized object oriented entity:
  2409.   ;; @defivar class name
  2410.   ;;     In Info, `Instance variable of class: name'
  2411.   ;; Note: args in upper case; use of `of'
  2412.   ;; Use cdr of texinfo-defun-type to determine category:
  2413.   (let ((category (car (cdr texinfo-defun-type)))
  2414.         (class (car parsed-args))
  2415.         (name (car (cdr  parsed-args)))
  2416.         (args (cdr  (cdr parsed-args))))
  2417.     (insert " -- " category " of " class ": " name)
  2418.     (while args
  2419.       (insert " " (upcase (car args)))
  2420.       (setq args (cdr args)))))
  2421.  
  2422.  
  2423. ;;; Indexing for definitions
  2424.  
  2425. ;; An index entry has three parts: the `entry proper', the node name, and the
  2426. ;; line number.  Depending on the which command is used, the entry is
  2427. ;; formatted differently:
  2428. ;;
  2429. ;; @defun, 
  2430. ;; @defmac, 
  2431. ;; @defspec, 
  2432. ;; @defvar, 
  2433. ;; @defopt          all use their 1st argument as the entry-proper 
  2434. ;;
  2435. ;; @deffn, 
  2436. ;; @defvr, 
  2437. ;; @deftp 
  2438. ;; @deftypefun
  2439. ;; @deftypevar      all use their 2nd argument as the entry-proper
  2440. ;;
  2441. ;; @deftypefn, 
  2442. ;; @deftypevr       both use their 3rd argument as the entry-proper  
  2443. ;;
  2444. ;; @defmethod       uses its 2nd and 1st arguments as an entry-proper 
  2445. ;;                    formatted: NAME on CLASS
  2446.  
  2447. ;; @defop           uses its 3rd and 2nd arguments as an entry-proper 
  2448. ;;                    formatted: NAME on CLASS
  2449. ;;        
  2450. ;; @defivar         uses its 2nd and 1st arguments as an entry-proper
  2451. ;;                    formatted: NAME of CLASS
  2452. ;;
  2453. ;; @defcv           uses its 3rd and 2nd argument as an entry-proper
  2454. ;;                    formatted: NAME of CLASS
  2455.  
  2456. (put 'defun 'texinfo-defun-indexing-property 'texinfo-index-defun)
  2457. (put 'defunx 'texinfo-defun-indexing-property 'texinfo-index-defun)
  2458. (put 'defmac 'texinfo-defun-indexing-property 'texinfo-index-defun)
  2459. (put 'defmacx 'texinfo-defun-indexing-property 'texinfo-index-defun)
  2460. (put 'defspec 'texinfo-defun-indexing-property 'texinfo-index-defun)
  2461. (put 'defspecx 'texinfo-defun-indexing-property 'texinfo-index-defun)
  2462. (put 'defvar 'texinfo-defun-indexing-property 'texinfo-index-defun)
  2463. (put 'defvarx 'texinfo-defun-indexing-property 'texinfo-index-defun)
  2464. (put 'defopt  'texinfo-defun-indexing-property 'texinfo-index-defun)
  2465. (put 'defoptx  'texinfo-defun-indexing-property 'texinfo-index-defun)
  2466. (defun texinfo-index-defun (parsed-args)
  2467.   ;; use 1st parsed-arg  as entry-proper
  2468.   ;; `index-list' will be texinfo-findex or the like
  2469.   (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
  2470.     (set index-list
  2471.          (cons 
  2472.           ;; Three elements: entry-proper, node-name, line-number
  2473.           (list
  2474.            (car parsed-args)
  2475.            texinfo-last-node
  2476.            ;; Region formatting may not provide last node position.
  2477.            (if texinfo-last-node-pos
  2478.                (1+ (count-lines texinfo-last-node-pos (point)))
  2479.              1))
  2480.           (symbol-value index-list)))))
  2481.  
  2482. (put 'deffn 'texinfo-defun-indexing-property 'texinfo-index-deffn)
  2483. (put 'deffnx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
  2484. (put 'defvr 'texinfo-defun-indexing-property 'texinfo-index-deffn)
  2485. (put 'defvrx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
  2486. (put 'deftp 'texinfo-defun-indexing-property 'texinfo-index-deffn)
  2487. (put 'deftpx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
  2488. (put 'deftypefun 'texinfo-defun-indexing-property 'texinfo-index-deffn)
  2489. (put 'deftypefunx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
  2490. (put 'deftypevar 'texinfo-defun-indexing-property 'texinfo-index-deffn)
  2491. (put 'deftypevarx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
  2492. (defun texinfo-index-deffn (parsed-args) 
  2493.  ;; use 2nd parsed-arg  as entry-proper
  2494.   ;; `index-list' will be texinfo-findex or the like
  2495.   (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
  2496.     (set index-list
  2497.          (cons 
  2498.           ;; Three elements: entry-proper, node-name, line-number
  2499.           (list
  2500.            (car (cdr parsed-args))
  2501.            texinfo-last-node
  2502.            ;; Region formatting may not provide last node position.
  2503.            (if texinfo-last-node-pos
  2504.                (1+ (count-lines texinfo-last-node-pos (point)))
  2505.              1))
  2506.           (symbol-value index-list)))))
  2507.  
  2508. (put 'deftypefn 'texinfo-defun-indexing-property 'texinfo-index-deftypefn)
  2509. (put 'deftypefnx 'texinfo-defun-indexing-property 'texinfo-index-deftypefn)
  2510. (put 'deftypevr 'texinfo-defun-indexing-property 'texinfo-index-deftypefn)
  2511. (put 'deftypevrx 'texinfo-defun-indexing-property 'texinfo-index-deftypefn)
  2512. (defun texinfo-index-deftypefn (parsed-args)
  2513.   ;; use 3rd parsed-arg  as entry-proper
  2514.   ;; `index-list' will be texinfo-findex or the like
  2515.   (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
  2516.     (set index-list
  2517.          (cons 
  2518.           ;; Three elements: entry-proper, node-name, line-number
  2519.           (list
  2520.            (car (cdr (cdr parsed-args)))
  2521.            texinfo-last-node
  2522.            ;; Region formatting may not provide last node position.
  2523.            (if texinfo-last-node-pos
  2524.                (1+ (count-lines texinfo-last-node-pos (point)))
  2525.              1))
  2526.           (symbol-value index-list)))))
  2527.  
  2528. (put 'defmethod 'texinfo-defun-indexing-property 'texinfo-index-defmethod)
  2529. (put 'defmethodx 'texinfo-defun-indexing-property 'texinfo-index-defmethod)
  2530. (defun texinfo-index-defmethod (parsed-args)
  2531.   ;; use 2nd on 1st parsed-arg  as entry-proper
  2532.   ;; `index-list' will be texinfo-findex or the like
  2533.   (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
  2534.     (set index-list
  2535.          (cons 
  2536.           ;; Three elements: entry-proper, node-name, line-number
  2537.           (list
  2538.            (format "%s on %s"            
  2539.                    (car (cdr parsed-args))
  2540.                    (car parsed-args))
  2541.            texinfo-last-node
  2542.            ;; Region formatting may not provide last node position.
  2543.            (if texinfo-last-node-pos
  2544.                (1+ (count-lines texinfo-last-node-pos (point)))
  2545.              1))
  2546.           (symbol-value index-list)))))
  2547.  
  2548. (put 'defop 'texinfo-defun-indexing-property 'texinfo-index-defop)
  2549. (put 'defopx 'texinfo-defun-indexing-property 'texinfo-index-defop)
  2550. (defun texinfo-index-defop (parsed-args)
  2551.   ;; use 3rd on 2nd parsed-arg  as entry-proper
  2552.   ;; `index-list' will be texinfo-findex or the like
  2553.   (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
  2554.     (set index-list
  2555.          (cons 
  2556.           ;; Three elements: entry-proper, node-name, line-number
  2557.           (list
  2558.            (format "%s on %s"            
  2559.                    (car (cdr (cdr parsed-args)))
  2560.                    (car (cdr parsed-args)))
  2561.            texinfo-last-node
  2562.            ;; Region formatting may not provide last node position.
  2563.            (if texinfo-last-node-pos
  2564.                (1+ (count-lines texinfo-last-node-pos (point)))
  2565.              1))
  2566.           (symbol-value index-list)))))
  2567.  
  2568. (put 'defivar 'texinfo-defun-indexing-property 'texinfo-index-defivar)
  2569. (put 'defivarx 'texinfo-defun-indexing-property 'texinfo-index-defivar)
  2570. (defun texinfo-index-defivar (parsed-args)
  2571.   ;; use 2nd of 1st parsed-arg  as entry-proper
  2572.   ;; `index-list' will be texinfo-findex or the like
  2573.   (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
  2574.     (set index-list
  2575.          (cons 
  2576.           ;; Three elements: entry-proper, node-name, line-number
  2577.           (list
  2578.            (format "%s of %s"            
  2579.                    (car (cdr parsed-args))
  2580.                    (car parsed-args))
  2581.            texinfo-last-node
  2582.            ;; Region formatting may not provide last node position.
  2583.            (if texinfo-last-node-pos
  2584.                (1+ (count-lines texinfo-last-node-pos (point)))
  2585.              1))
  2586.           (symbol-value index-list)))))
  2587.  
  2588. (put 'defcv 'texinfo-defun-indexing-property 'texinfo-index-defcv)
  2589. (put 'defcvx 'texinfo-defun-indexing-property 'texinfo-index-defcv)
  2590. (defun texinfo-index-defcv (parsed-args)
  2591.   ;; use 3rd of 2nd parsed-arg  as entry-proper
  2592.   ;; `index-list' will be texinfo-findex or the like
  2593.   (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
  2594.     (set index-list
  2595.          (cons 
  2596.           ;; Three elements: entry-proper, node-name, line-number
  2597.           (list
  2598.            (format "%s of %s"            
  2599.                    (car (cdr (cdr parsed-args)))
  2600.                    (car (cdr parsed-args)))
  2601.            texinfo-last-node
  2602.            ;; Region formatting may not provide last node position.
  2603.            (if texinfo-last-node-pos
  2604.                (1+ (count-lines texinfo-last-node-pos (point)))
  2605.              1))
  2606.           (symbol-value index-list)))))
  2607.  
  2608.  
  2609. ;;; Properties for definitions
  2610.  
  2611. ;; Each definition command has six properties:
  2612. ;;
  2613. ;; 1. texinfo-deffn-formatting-property      to format definition line
  2614. ;; 2. texinfo-defun-indexing-property        to create index entry
  2615. ;; 3. texinfo-format                         formatting command
  2616. ;; 4. texinfo-end                            end formatting command
  2617. ;; 5. texinfo-defun-type                     type of deffn to format
  2618. ;; 6. texinfo-defun-index                    type of index to use
  2619. ;;
  2620. ;; The `x' forms of each definition command are used for the second
  2621. ;; and subsequent header lines.
  2622.  
  2623. ;; The texinfo-deffn-formatting-property and texinfo-defun-indexing-property
  2624. ;; are listed just before the appropriate formatting and indexing commands.
  2625.  
  2626. (put 'deffn 'texinfo-format 'texinfo-format-defun)
  2627. (put 'deffnx 'texinfo-format 'texinfo-format-defunx)
  2628. (put 'deffn 'texinfo-end 'texinfo-end-defun)
  2629. (put 'deffn 'texinfo-defun-type '('deffn-type nil))
  2630. (put 'deffnx 'texinfo-defun-type '('deffn-type nil))
  2631. (put 'deffn 'texinfo-defun-index 'texinfo-findex)
  2632. (put 'deffnx 'texinfo-defun-index 'texinfo-findex)
  2633.  
  2634. (put 'defun 'texinfo-format 'texinfo-format-defun)
  2635. (put 'defunx 'texinfo-format 'texinfo-format-defunx)
  2636. (put 'defun 'texinfo-end 'texinfo-end-defun)
  2637. (put 'defun 'texinfo-defun-type '('defun-type "Function"))
  2638. (put 'defunx 'texinfo-defun-type '('defun-type "Function"))
  2639. (put 'defun 'texinfo-defun-index 'texinfo-findex)
  2640. (put 'defunx 'texinfo-defun-index 'texinfo-findex)
  2641.  
  2642. (put 'defmac 'texinfo-format 'texinfo-format-defun)
  2643. (put 'defmacx 'texinfo-format 'texinfo-format-defunx)
  2644. (put 'defmac 'texinfo-end 'texinfo-end-defun)
  2645. (put 'defmac 'texinfo-defun-type '('defun-type "Macro"))
  2646. (put 'defmacx 'texinfo-defun-type '('defun-type "Macro"))
  2647. (put 'defmac 'texinfo-defun-index 'texinfo-findex)
  2648. (put 'defmacx 'texinfo-defun-index 'texinfo-findex)
  2649.  
  2650. (put 'defspec 'texinfo-format 'texinfo-format-defun)
  2651. (put 'defspecx 'texinfo-format 'texinfo-format-defunx)
  2652. (put 'defspec 'texinfo-end 'texinfo-end-defun)
  2653. (put 'defspec 'texinfo-defun-type '('defun-type "Special form"))
  2654. (put 'defspecx 'texinfo-defun-type '('defun-type "Special form"))
  2655. (put 'defspec 'texinfo-defun-index 'texinfo-findex)
  2656. (put 'defspecx 'texinfo-defun-index 'texinfo-findex)
  2657.  
  2658. (put 'defvr 'texinfo-format 'texinfo-format-defun)
  2659. (put 'defvrx 'texinfo-format 'texinfo-format-defunx)
  2660. (put 'defvr 'texinfo-end 'texinfo-end-defun)
  2661. (put 'defvr 'texinfo-defun-type '('deffn-type nil))
  2662. (put 'defvrx 'texinfo-defun-type '('deffn-type nil))
  2663. (put 'defvr 'texinfo-defun-index 'texinfo-vindex)
  2664. (put 'defvrx 'texinfo-defun-index 'texinfo-vindex)
  2665.  
  2666. (put 'defvar 'texinfo-format 'texinfo-format-defun)
  2667. (put 'defvarx 'texinfo-format 'texinfo-format-defunx)
  2668. (put 'defvar 'texinfo-end 'texinfo-end-defun)
  2669. (put 'defvar 'texinfo-defun-type '('defun-type "Variable"))
  2670. (put 'defvarx 'texinfo-defun-type '('defun-type "Variable"))
  2671. (put 'defvar 'texinfo-defun-index 'texinfo-vindex)
  2672. (put 'defvarx 'texinfo-defun-index 'texinfo-vindex)
  2673.  
  2674. (put 'defconst 'texinfo-format 'texinfo-format-defun)
  2675. (put 'defconstx 'texinfo-format 'texinfo-format-defunx)
  2676. (put 'defconst 'texinfo-end 'texinfo-end-defun)
  2677. (put 'defconst 'texinfo-defun-type '('defun-type "Constant"))
  2678. (put 'defconstx 'texinfo-defun-type '('defun-type "Constant"))
  2679. (put 'defconst 'texinfo-defun-index 'texinfo-vindex)
  2680. (put 'defconstx 'texinfo-defun-index 'texinfo-vindex)
  2681.  
  2682. (put 'defcmd 'texinfo-format 'texinfo-format-defun)
  2683. (put 'defcmdx 'texinfo-format 'texinfo-format-defunx)
  2684. (put 'defcmd 'texinfo-end 'texinfo-end-defun)
  2685. (put 'defcmd 'texinfo-defun-type '('defun-type "Command"))
  2686. (put 'defcmdx 'texinfo-defun-type '('defun-type "Command"))
  2687. (put 'defcmd 'texinfo-defun-index 'texinfo-findex)
  2688. (put 'defcmdx 'texinfo-defun-index 'texinfo-findex)
  2689.  
  2690. (put 'defopt 'texinfo-format 'texinfo-format-defun)
  2691. (put 'defoptx 'texinfo-format 'texinfo-format-defunx)
  2692. (put 'defopt 'texinfo-end 'texinfo-end-defun)
  2693. (put 'defopt 'texinfo-defun-type '('defun-type "User Option"))
  2694. (put 'defoptx 'texinfo-defun-type '('defun-type "User Option"))
  2695. (put 'defopt 'texinfo-defun-index 'texinfo-vindex)
  2696. (put 'defoptx 'texinfo-defun-index 'texinfo-vindex)
  2697.  
  2698. (put 'deftp 'texinfo-format 'texinfo-format-defun)
  2699. (put 'deftpx 'texinfo-format 'texinfo-format-defunx)
  2700. (put 'deftp 'texinfo-end 'texinfo-end-defun)
  2701. (put 'deftp 'texinfo-defun-type '('deftp-type nil))
  2702. (put 'deftpx 'texinfo-defun-type '('deftp-type nil))
  2703. (put 'deftp 'texinfo-defun-index 'texinfo-tindex)
  2704. (put 'deftpx 'texinfo-defun-index 'texinfo-tindex)
  2705.  
  2706. ;;; Object-oriented stuff is a little hairier.
  2707.  
  2708. (put 'defop 'texinfo-format 'texinfo-format-defun)
  2709. (put 'defopx 'texinfo-format 'texinfo-format-defunx)
  2710. (put 'defop 'texinfo-end 'texinfo-end-defun)
  2711. (put 'defop 'texinfo-defun-type '('defop-type nil))
  2712. (put 'defopx 'texinfo-defun-type '('defop-type nil))
  2713. (put 'defop 'texinfo-defun-index 'texinfo-findex)
  2714. (put 'defopx 'texinfo-defun-index 'texinfo-findex)
  2715.  
  2716. (put 'defmethod 'texinfo-format 'texinfo-format-defun)
  2717. (put 'defmethodx 'texinfo-format 'texinfo-format-defunx)
  2718. (put 'defmethod 'texinfo-end 'texinfo-end-defun)
  2719. (put 'defmethod 'texinfo-defun-type '('defmethod-type "Method"))
  2720. (put 'defmethodx 'texinfo-defun-type '('defmethod-type "Method"))
  2721. (put 'defmethod 'texinfo-defun-index 'texinfo-findex)
  2722. (put 'defmethodx 'texinfo-defun-index 'texinfo-findex)
  2723.  
  2724. (put 'defcv 'texinfo-format 'texinfo-format-defun)
  2725. (put 'defcvx 'texinfo-format 'texinfo-format-defunx)
  2726. (put 'defcv 'texinfo-end 'texinfo-end-defun)
  2727. (put 'defcv 'texinfo-defun-type '('defop-type nil))
  2728. (put 'defcvx 'texinfo-defun-type '('defop-type nil))
  2729. (put 'defcv 'texinfo-defun-index 'texinfo-vindex)
  2730. (put 'defcvx 'texinfo-defun-index 'texinfo-vindex)
  2731.  
  2732. (put 'defivar 'texinfo-format 'texinfo-format-defun)
  2733. (put 'defivarx 'texinfo-format 'texinfo-format-defunx)
  2734. (put 'defivar 'texinfo-end 'texinfo-end-defun)
  2735. (put 'defivar 'texinfo-defun-type '('defmethod-type "Instance variable"))
  2736. (put 'defivarx 'texinfo-defun-type '('defmethod-type "Instance variable"))
  2737. (put 'defivar 'texinfo-defun-index 'texinfo-vindex)
  2738. (put 'defivarx 'texinfo-defun-index 'texinfo-vindex)
  2739.  
  2740. ;;; Typed functions and variables
  2741.  
  2742. (put 'deftypefn 'texinfo-format 'texinfo-format-defun)
  2743. (put 'deftypefnx 'texinfo-format 'texinfo-format-defunx)
  2744. (put 'deftypefn 'texinfo-end 'texinfo-end-defun)
  2745. (put 'deftypefn 'texinfo-defun-type '('deftypefn-type nil))
  2746. (put 'deftypefnx 'texinfo-defun-type '('deftypefn-type nil))
  2747. (put 'deftypefn 'texinfo-defun-index 'texinfo-findex)
  2748. (put 'deftypefnx 'texinfo-defun-index 'texinfo-findex)
  2749.  
  2750. (put 'deftypefun 'texinfo-format 'texinfo-format-defun)
  2751. (put 'deftypefunx 'texinfo-format 'texinfo-format-defunx)
  2752. (put 'deftypefun 'texinfo-end 'texinfo-end-defun)
  2753. (put 'deftypefun 'texinfo-defun-type '('deftypefun-type "Function"))
  2754. (put 'deftypefunx 'texinfo-defun-type '('deftypefun-type "Function"))
  2755. (put 'deftypefun 'texinfo-defun-index 'texinfo-findex)
  2756. (put 'deftypefunx 'texinfo-defun-index 'texinfo-findex)
  2757.  
  2758. (put 'deftypevr 'texinfo-format 'texinfo-format-defun)
  2759. (put 'deftypevrx 'texinfo-format 'texinfo-format-defunx)
  2760. (put 'deftypevr 'texinfo-end 'texinfo-end-defun)
  2761. (put 'deftypevr 'texinfo-defun-type '('deftypefn-type nil))
  2762. (put 'deftypevrx 'texinfo-defun-type '('deftypefn-type nil))
  2763. (put 'deftypevr 'texinfo-defun-index 'texinfo-vindex)
  2764. (put 'deftypevrx 'texinfo-defun-index 'texinfo-vindex)
  2765.  
  2766. (put 'deftypevar 'texinfo-format 'texinfo-format-defun)
  2767. (put 'deftypevarx 'texinfo-format 'texinfo-format-defunx)
  2768. (put 'deftypevar 'texinfo-end 'texinfo-end-defun)
  2769. (put 'deftypevar 'texinfo-defun-type '('deftypevar-type "Variable"))
  2770. (put 'deftypevarx 'texinfo-defun-type '('deftypevar-type "Variable"))
  2771. (put 'deftypevar 'texinfo-defun-index 'texinfo-vindex)
  2772. (put 'deftypevarx 'texinfo-defun-index 'texinfo-vindex)
  2773.  
  2774.  
  2775. ;;; @set, @clear, @ifset, @ifclear
  2776.  
  2777. ;; If a flag is set with @set FLAG, then text between @ifset and @end
  2778. ;; ifset is formatted normally, but if the flag is is cleared with
  2779. ;; @clear FLAG, then the text is not formatted; it is ignored.
  2780.  
  2781. ;; If a flag is cleared with @clear FLAG, then text between @ifclear
  2782. ;; and @end ifclear is formatted normally, but if the flag is is set with
  2783. ;; @set FLAG, then the text is not formatted; it is ignored.  @ifclear
  2784. ;; is the opposite of @ifset.
  2785.  
  2786. ;; If a flag is set to a string with @set FLAG, 
  2787. ;; replace  @value{FLAG} with the string.
  2788. ;; If a flag with a value is cleared, 
  2789. ;; @value{FLAG} is invalid, 
  2790. ;; as if there had never been any @set FLAG previously.
  2791.  
  2792. (put 'clear 'texinfo-format 'texinfo-clear)
  2793. (defun texinfo-clear ()
  2794.   "Clear the value of the flag."
  2795.   (let* ((arg (texinfo-parse-arg-discard))
  2796.          (flag (car (read-from-string arg)))
  2797.          (value (substring arg (cdr (read-from-string arg)))))
  2798.     (put flag 'texinfo-whether-setp 'flag-cleared)
  2799.     (put flag 'texinfo-set-value "")))
  2800.  
  2801. (put 'set 'texinfo-format 'texinfo-set)
  2802. (defun texinfo-set ()
  2803.   "Set the value of the flag, optionally to a string.
  2804. The command  `@set foo This is a string.'
  2805. sets flag foo to the value: `This is a string.'
  2806. The command  `@value{foo}'  expands to the value."
  2807.   (let* ((arg (texinfo-parse-arg-discard))
  2808.          (flag (car (read-from-string arg)))
  2809.          (value (substring arg (cdr (read-from-string arg)))))
  2810.     (put flag 'texinfo-whether-setp 'flag-set)
  2811.     (put flag 'texinfo-set-value value)))
  2812.  
  2813. (put 'value 'texinfo-format 'texinfo-value)
  2814. (defun texinfo-value ()
  2815.   "Insert the string to which the flag is set.
  2816. The command  `@set foo This is a string.'
  2817. sets flag foo to the value: `This is a string.'
  2818. The command  `@value{foo}'  expands to the value."
  2819.   (let ((arg (texinfo-parse-arg-discard)))
  2820.     (cond ((and
  2821.             (eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
  2822.                 'flag-set)
  2823.             (get (car (read-from-string arg)) 'texinfo-set-value))
  2824.            (insert (get (car (read-from-string arg)) 'texinfo-set-value)))
  2825.           ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp) 
  2826.                'flag-cleared)
  2827.            (insert (format "{No value for \"%s\"}"  arg)))
  2828.           ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp) nil)
  2829.            (insert (format "{No value for \"%s\"}"  arg))))))
  2830.  
  2831. (put 'ifset 'texinfo-end 'texinfo-discard-command)
  2832. (put 'ifset 'texinfo-format 'texinfo-if-set)
  2833. (defun texinfo-if-set ()
  2834.   "If set, continue formatting; else do not format region up to @end ifset"
  2835.   (let ((arg (texinfo-parse-arg-discard)))
  2836.     (cond
  2837.      ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
  2838.           'flag-set)
  2839.       ;; Format the text (i.e., do not remove it); do nothing here.
  2840.       ())
  2841.      ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
  2842.           'flag-cleared)
  2843.       ;; Clear region (i.e., cause the text to be ignored).
  2844.       (delete-region texinfo-command-start
  2845.                        (progn (re-search-forward "@end ifset[ \t]*\n")
  2846.                               (point))))
  2847.      ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
  2848.           nil)
  2849.       ;; In this case flag is neither set nor cleared.  
  2850.       ;; Act as if set, i.e. do nothing.
  2851.       ()))))
  2852.  
  2853. (put 'ifclear 'texinfo-end 'texinfo-discard-command)
  2854. (put 'ifclear 'texinfo-format 'texinfo-if-clear)
  2855. (defun texinfo-if-clear ()
  2856.   "If clear, continue formatting; if set, do not format up to @end ifset"
  2857.   (let ((arg (texinfo-parse-arg-discard)))
  2858.     (cond
  2859.      ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
  2860.           'flag-set)
  2861.       ;; Clear region (i.e., cause the text to be ignored).
  2862.       (delete-region texinfo-command-start
  2863.                        (progn (re-search-forward "@end ifclear[ \t]*\n")
  2864.                               (point))))
  2865.      ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
  2866.           'flag-cleared)
  2867.       ;; Format the text (i.e., do not remove it); do nothing here.
  2868.       ())
  2869.      ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
  2870.           nil)
  2871.       ;; In this case flag is neither set nor cleared.  
  2872.       ;; Act as if clear, i.e. do nothing.
  2873.       ()))))
  2874.  
  2875.  
  2876. ;;; Process included files:  `@include' command
  2877.  
  2878. ;; Updated 19 October 1990
  2879. ;; In the original version, include files were ignored by Info but
  2880. ;; incorporated in to the printed manual.  To make references to the
  2881. ;; included file, the Texinfo source file has to refer to the included
  2882. ;; files using the `(filename)nodename' format for referring to other
  2883. ;; Info files.  Also, the included files had to be formatted on their
  2884. ;; own.  It was just like they were another file.
  2885.  
  2886. ;; Currently, include files are inserted into the buffer that is
  2887. ;; formatted for Info.  If large, the resulting info file is split and
  2888. ;; tagified.  For current include files to work, the master menu must
  2889. ;; refer to all the nodes, and the highest level nodes in the include
  2890. ;; files must have the correct next, prev, and up pointers.
  2891.  
  2892. ;; The included file may have an @setfilename and even an @settitle,
  2893. ;; but not an `\input texinfo' line.
  2894.  
  2895. ;; Updated 24 March 1993
  2896. ;; In order for @raisesections and @lowersections to work, included
  2897. ;; files must be inserted into the buffer holding the outer file
  2898. ;; before other Info formatting takes place.  So @include is no longer
  2899. ;; is treated like other @-commands.
  2900. (put 'include 'texinfo-format  'texinfo-format-noop)
  2901.  
  2902. ; Original definition:
  2903. ; (defun texinfo-format-include ()
  2904. ;   (let ((filename (texinfo-parse-arg-discard))
  2905. ;       (default-directory input-directory)
  2906. ;       subindex)
  2907. ;     (setq subindex
  2908. ;         (save-excursion
  2909. ;           (progn (find-file
  2910. ;                   (cond ((file-readable-p (concat filename ".texinfo"))
  2911. ;                          (concat filename ".texinfo"))
  2912. ;                         ((file-readable-p (concat filename ".texi"))
  2913. ;                          (concat filename ".texi"))
  2914. ;                         ((file-readable-p (concat filename ".tex"))
  2915. ;                          (concat filename ".tex"))
  2916. ;                         ((file-readable-p filename)
  2917. ;                          filename)
  2918. ;                         (t (error "@include'd file %s not found"
  2919. ;                                   filename))))
  2920. ;                  (texinfo-format-buffer-1))))
  2921. ;     (texinfo-subindex 'texinfo-vindex (car subindex) (nth 1 subindex))
  2922. ;     (texinfo-subindex 'texinfo-findex (car subindex) (nth 2 subindex))
  2923. ;     (texinfo-subindex 'texinfo-cindex (car subindex) (nth 3 subindex))
  2924. ;     (texinfo-subindex 'texinfo-pindex (car subindex) (nth 4 subindex))
  2925. ;     (texinfo-subindex 'texinfo-tindex (car subindex) (nth 5 subindex))
  2926. ;     (texinfo-subindex 'texinfo-kindex (car subindex) (nth 6 subindex))))
  2927. ;
  2928. ;(defun texinfo-subindex (indexvar file content)
  2929. ;  (set indexvar (cons (list 'recurse file content)
  2930. ;                      (symbol-value indexvar))))
  2931.  
  2932. ; Second definition:
  2933. ; (put 'include 'texinfo-format 'texinfo-format-include)
  2934. ; (defun texinfo-format-include ()
  2935. ;   (let ((filename (concat input-directory
  2936. ;                           (texinfo-parse-arg-discard)))
  2937. ;         (default-directory input-directory))
  2938. ;     (message "Reading: %s" filename)
  2939. ;     (save-excursion
  2940. ;       (save-restriction
  2941. ;         (narrow-to-region
  2942. ;          (point)
  2943. ;          (+ (point) (car (cdr (insert-file-contents filename)))))
  2944. ;         (goto-char (point-min))
  2945. ;         (texinfo-append-refill)
  2946. ;         (texinfo-format-convert (point-min) (point-max))))
  2947. ;     (setq last-input-buffer input-buffer)  ; to bypass setfilename
  2948. ;     ))
  2949.  
  2950.  
  2951. ;;; Numerous commands do nothing in Texinfo
  2952.  
  2953. ;; These commands are defined in texinfo.tex for printed output.
  2954.  
  2955. (put 'bye 'texinfo-format 'texinfo-discard-line)
  2956. (put 'c 'texinfo-format 'texinfo-discard-line-with-args)
  2957. (put 'comment 'texinfo-format 'texinfo-discard-line-with-args)
  2958. (put 'contents 'texinfo-format 'texinfo-discard-line-with-args)
  2959. (put 'finalout 'texinfo-format 'texinfo-discard-line)
  2960. (put 'group 'texinfo-end 'texinfo-discard-line-with-args)
  2961. (put 'group 'texinfo-format 'texinfo-discard-line-with-args)
  2962. (put 'headings 'texinfo-format 'texinfo-discard-line-with-args)
  2963. (put 'hsize 'texinfo-format 'texinfo-discard-line-with-args)
  2964. (put 'itemindent 'texinfo-format 'texinfo-discard-line-with-args)
  2965. (put 'lispnarrowing 'texinfo-format 'texinfo-discard-line-with-args)
  2966. (put 'need 'texinfo-format 'texinfo-discard-line-with-args)
  2967. (put 'nopara 'texinfo-format 'texinfo-discard-line-with-args)
  2968. (put 'page 'texinfo-format 'texinfo-discard-line-with-args)
  2969. (put 'parindent 'texinfo-format 'texinfo-discard-line-with-args)
  2970. (put 'setchapternewpage 'texinfo-format 'texinfo-discard-line-with-args)
  2971. (put 'setq 'texinfo-format 'texinfo-discard-line-with-args)
  2972. (put 'settitle 'texinfo-format 'texinfo-discard-line-with-args)
  2973. (put 'setx 'texinfo-format 'texinfo-discard-line-with-args)
  2974. (put 'shortcontents 'texinfo-format 'texinfo-discard-line-with-args)
  2975. (put 'smallbook 'texinfo-format 'texinfo-discard-line)
  2976. (put 'summarycontents 'texinfo-format 'texinfo-discard-line-with-args)
  2977.  
  2978.  
  2979. ;;; Some commands cannot be handled
  2980.  
  2981. (defun texinfo-unsupported ()
  2982.   (error "%s is not handled by texinfo"
  2983.          (buffer-substring texinfo-command-start texinfo-command-end)))
  2984.  
  2985. ;;; Batch formatting
  2986.  
  2987. (defun batch-texinfo-format ()
  2988.   "Runs  texinfo-format-buffer  on the files remaining on the command line.
  2989. Must be used only with -batch, and kills emacs on completion.
  2990. Each file will be processed even if an error occurred previously.
  2991. For example, invoke
  2992.   \"emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo\"."
  2993.   (if (not noninteractive)
  2994.       (error "batch-texinfo-format may only be used -batch."))
  2995.   (let ((version-control t)
  2996.         (auto-save-default nil)
  2997.         (find-file-run-dired nil)
  2998.         (kept-old-versions 259259)
  2999.         (kept-new-versions 259259))
  3000.     (let ((error 0)
  3001.           file
  3002.           (files ()))
  3003.       (while command-line-args-left
  3004.         (setq file (expand-file-name (car command-line-args-left)))
  3005.         (cond ((not (file-exists-p file))
  3006.                (message ">> %s does not exist!" file)
  3007.                (setq error 1
  3008.                      command-line-args-left (cdr command-line-args-left)))
  3009.               ((file-directory-p file)
  3010.                (setq command-line-args-left
  3011.                      (nconc (directory-files file)
  3012.                             (cdr command-line-args-left))))
  3013.               (t
  3014.                (setq files (cons file files)
  3015.                      command-line-args-left (cdr command-line-args-left)))))
  3016.       (while files
  3017.         (setq file (car files)
  3018.               files (cdr files))
  3019.         (condition-case err
  3020.             (progn
  3021.               (if buffer-file-name (kill-buffer (current-buffer)))
  3022.               (find-file file)
  3023.               (buffer-disable-undo (current-buffer))
  3024.               (set-buffer-modified-p nil)
  3025.               (texinfo-mode)
  3026.               (message "texinfo formatting %s..." file)
  3027.               (texinfo-format-buffer nil)
  3028.               (if (buffer-modified-p)
  3029.                   (progn (message "Saving modified %s" (buffer-file-name))
  3030.                          (save-buffer))))
  3031.           (error
  3032.            (message ">> Error: %s" (prin1-to-string err))
  3033.            (message ">>  point at")
  3034.            (let ((s (buffer-substring (point)
  3035.                                       (min (+ (point) 100)
  3036.                                            (point-max))))
  3037.                  (tem 0))
  3038.              (while (setq tem (string-match "\n+" s tem))
  3039.                (setq s (concat (substring s 0 (match-beginning 0))
  3040.                                "\n>>  "
  3041.                                (substring s (match-end 0)))
  3042.                      tem (1+ tem)))
  3043.              (message ">>  %s" s))
  3044.            (setq error 1))))
  3045.       (kill-emacs error))))
  3046.  
  3047.  
  3048. ;;; Place `provide' at end of file.
  3049. (provide 'texinfmt)
  3050.  
  3051. ;;; texinfmt.el ends here.
  3052.